查看“Java Mail”的源代码
←
Java Mail
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
发送电子邮件,在 2018 年以前一般使用 javax.mail 可以使用 1.4.7 版本。引用的时候,还需要 javax.activation。(Sun 认可的标准扩展都以 javax 作为包名称开头。javax 中的包都只提供了接口,javax 中并不提供具体的实现。) <small><nowiki> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1.1</version> </dependency></nowiki></small> 2018 年以后,javax.mail 更名为 jakarta.mail。 <small><nowiki> <dependency> <groupId>com.sun.mail</groupId> <artifactId>jakarta.mail</artifactId> <version>2.0.1</version> </dependency></nowiki></small> === Sample === <small><nowiki>public class MAIL { public static final String VERSION = "v1.0.0"; private static String host, user, password; private static Properties mailSERV = new Properties(); private static Session session; private static Transport ts; private static MimeMessage message; public MAIL(String sFile) { try { CNF cnf1 = new CNF(sFile); mailSERV = cnf1.get(); host = mailSERV.getProperty("host"); user = mailSERV.getProperty("user"); password = mailSERV.getProperty("password"); System.out.println(password); session = Session.getInstance(mailSERV); session.setDebug(true); ts = session.getTransport(); ts.connect(host, user, password); } catch (Exception e) { log(e); } } public MAIL() { this("email.cnf"); } public static int send(Map<String, String> _mail) { String s_from, s_to, s_subject, s_content; List<String> l_to; // default from = mail.user if (_mail.containsKey("from")) { s_from = _mail.get("from"); } else { s_from = mailSERV.getProperty("user"); } // to is list s_to = _mail.get("to").replace(";", ","); l_to = str2list(s_to, ','); s_subject = _mail.get("subject"); s_content = _mail.get("content"); try { message = new MimeMessage(session); message.setFrom(new InternetAddress(s_from)); message.setSubject(s_subject); message.setContent(s_content, "text/html;charset=UTF-8"); for (String to : l_to) { message.setRecipient(Message.RecipientType.TO, new InternetAddress(to)); ts.sendMessage(message, message.getAllRecipients()); } ts.close(); } catch (Exception e) { log(e); return -1; } return 0; } } mail.transport.protocol=smtp mail.smtp.auth=true mail.smtp.starttls.enable=true mail.smtp.ssl.protocols=TLSv1.2 host= user= password=</nowiki></small> [[分类:Develop]] [[分类:Java]]
返回
Java Mail
。
导航菜单
个人工具
登录
命名空间
页面
讨论
大陆简体
查看
阅读
查看源代码
查看历史
更多
搜索
导航
首页
最近更改
随机页面
目录
文章分类
侧边栏
帮助
工具
链入页面
相关更改
特殊页面
页面信息