Java发送邮件,支持SSL、TLS和别名

使用java发送邮件,很常用的功能。

现在大多邮件服务器使用了ssl加密,也有的用tls加密

1、使用SSL加密方式发送邮件

企业邮箱一般需要此类加密

Properties prop = new Properties();
// 协议
prop.setProperty("mail.transport.protocol", "smtp");
// 服务器
prop.setProperty("mail.smtp.host", host);
// 端口
prop.setProperty("mail.smtp.port", port);
// 使用smtp身份验证
prop.setProperty("mail.smtp.auth", "true");            
 
 
// 开启安全协议,SSL加密
MailSSLSocketFactory sf = null;
try {
    sf = new MailSSLSocketFactory();
    sf.setTrustAllHosts(true);
} catch (GeneralSecurityException e1) {
    e1.printStackTrace();
}
prop.put("mail.smtp.ssl.enable", "true");
prop.put("mail.smtp.ssl.socketFactory", sf);

2、使用TLS加密方式发送邮件

微软的office365邮箱用的此类加密

Properties prop = new Properties();
// 协议
prop.setProperty("mail.transport.protocol", "smtp");
// 服务器
prop.setProperty("mail.smtp.host", host);
// 端口
prop.setProperty("mail.smtp.port", port);
// 使用smtp身份验证
prop.setProperty("mail.smtp.auth", "true");
 
 
// 开启安全协议,TLS加密
prop.put("mail.smtp.starttls.enable", "true");

3、给邮箱地址起个名称

发送邮件时,想给邮箱地址起个名称?比如:XX网站支持,也是可以的

MimeMessage mimeMessage = new MimeMessage(session);
// 给邮箱地址起的名称
String addr = javax.mail.internet.MimeUtility.encodeText("XX网站技术支持");
// 注意这里的格式不能错,from 是发件人邮箱地址
mimeMessage.setFrom(new InternetAddress(addr + " <" + from + ">"));
// do something
mimeMessage.saveChanges();
Transport.send(mimeMessage);

https://blog.csdn.net/jinqilin721/article/details/88862824

更新时间:2020-05-21 19:36:40

本文由 新逸Cary 创作,如果您觉得本文不错,请随意赞赏
采用 知识共享署名4.0 国际许可协议进行许可
本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名
原文链接:https://blog.xinac.cn/archives/java发送邮件支持ssltls和别名.html
最后更新:2020-05-21 19:36:40

评论

Your browser is out of date!

Update your browser to view this website correctly. Update my browser now

×