标签:
今天刚刚看到有这个工具包就先使用了了一下
我的需求就是发送系统通知
然后就去官网变学习边使用这里顺便记录一下
先上maven地址
<dependency> <groupId>org.jodd</groupId> <artifactId>jodd-mail</artifactId> <version>3.6.5</version> </dependency>
我使用的是腾讯的企业邮箱所有发送邮件的服务器是smtp 经过SSL加密的 465端口
import jodd.mail.Email; import jodd.mail.SendMailSession; import jodd.mail.SmtpServer; import jodd.mail.SmtpSslServer; public class MailTest { public static void main(String args[]){ SmtpServer<?> smtp = SmtpSslServer.create("smtp.exmail.qq.com",465);//设置SSL的smtp服务器 smtp.authenticateWith("youremailname@xxx.com", "xxxxxx"); SendMailSession session = smtp.createSession(); Email email = Email.create().from("youremailname@xxx.com") .to("target@xxx.com").subject("主题")//设置了主题 .addHtml("<p style=‘background:red‘>第四回答是</p>") ; session.open();//打开连接 session.sendMail(email);//发送邮件 session.close();//关闭连接 } }
用着简单官网上也都有例子
标签:
原文地址:http://my.oschina.net/arthurdemo/blog/408651