邮件服务器使用的是未加密的连接,使用未加密网络发送敏感信息可能会被恶意攻击者通过拦截网络通信读取并修改信息。邮件发送加密通道分为SSL和TLS两种方式,SSL“安全套接层”协议,TLS“安全传输层”协议,都属于是加密协议(详细介绍 点击这里),加密模式下各协议端口也发生变化,不同的邮箱可能端口不同,基本上
stmp非SSL默认端口25 SSL加密端口465(网易加密多一个994)
POP3非SSL端口是110 SSL加密端口995
imap非SSL端口是143 SSL加密端口993
注意网络策略的同步修改,详细端口可以查看https://www.cnblogs.com/shangdawei/p/4305989.html,我这里使用网易163发送
注意以下几个配置
properties.put("mail.smtp.ssl.enable", "true");
properties.put("mail.smtp.ssl.socketFactory", sf);
端口号:465
注意以下几个配置
properties.put("mail.smtp.starttls.enable", "true"); //开启tls
端口号:25
如果需要邮件内识别html代码,在设置内容使用setContent并制定格式text/html;charset=utf-8,如果不需要识别html直接setText即可
// 消息 消息内容,"text/html;charset=utf-8"让其识别html代码
messageBodyPart.setContent(msg, "text/html;charset=utf-8");
package com.mail;
import java.io.UnsupportedEncodingException;
import java.security.GeneralSecurityException;
import java.util.Properties;
import javax.activation.DataHandler;
import javax.activation.DataSource;
import javax.activation.FileDataSource;
import javax.mail.Authenticator;
import javax.mail.BodyPart;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
import javax.mail.internet.MimeUtility;
import com.sun.mail.util.MailSSLSocketFactory;
public class SendMailTestMain {
public static void main(String[] args) {
String ACCOUNT = "[email protected]";//发件人
String MAILPASS = "xxxxx";//发件人,邮箱授权码
String host = "smtp.163.com";
//stmp非SSL加密默认端口25 SSL加密端口465(网易加密多一个994)
//POP3非SSL加密端口是110 SSL加密995
//imap非SSL加密端口是143 SSL加密993
//https://www.cnblogs.com/shangdawei/p/4305989.html
int port = 465;
String receive = "[email protected]";
String subject = "邮件发送";
//指定内容格式"text/html;charset=utf-8"让其识别html代码
String msg = "邮件内容支持标签";
String filename = "E:\\测试.doc";//附件
try {
// //SSL发送邮件
// port = 465;
// boolean flag = SendMailTestMain.sendMailBySSL(ACCOUNT, MAILPASS, host, port,receive, subject, msg, filename);
//TLS发送邮件
port = 25;
boolean flag = SendMailTestMain.sendMailByTLS(ACCOUNT, MAILPASS, host, port, receive, subject, msg, filename);
System.out.println("邮件发送结果:"+flag);
} catch (GeneralSecurityException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
//使用SSL加密通道
public static boolean sendMailBySSL(String ACCOUNT,String MAILPASS,String host,int port, String receive, String subject, String msg, String filename) throws GeneralSecurityException {
// 发件人电子邮箱
final String from = ACCOUNT;
// 发件人电子邮箱密码 这个密码是邮箱的客户端授权密码
final String pass = MAILPASS;
// 指定发送邮件的主机为 smtp.qq.com
// 获取系统属性
Properties properties = System.getProperties();
// 设置邮件服务器
properties.setProperty("mail.smtp.host", host);
// 端口号
properties.put("mail.smtp.port", port);
properties.put("mail.smtp.auth", "true");
MailSSLSocketFactory sf = new MailSSLSocketFactory();
sf.setTrustAllHosts(true);
properties.put("mail.smtp.ssl.enable", "true");
properties.put("mail.smtp.ssl.socketFactory", sf);
// 获取默认session对象
Session session = Session.getDefaultInstance(properties, new Authenticator() {
public PasswordAuthentication getPasswordAuthentication() { // qq邮箱服务器账户、第三方登录授权码
return new PasswordAuthentication(from, pass); // 发件人邮件用户名、密码
}
});
try {
// 创建默认的 MimeMessage 对象
MimeMessage message = new MimeMessage(session);
// Set From: 头部头字段 发件人邮箱
message.setFrom(new InternetAddress(from));
// Set To: 头部头字段 收件人邮箱
message.addRecipient(Message.RecipientType.TO, new InternetAddress(receive));
// Set Subject: 主题文字 主题
message.setSubject(subject);
// 创建消息部分
BodyPart messageBodyPart = new MimeBodyPart();
// 消息 消息内容,"text/html;charset=utf-8"让其识别html代码
messageBodyPart.setContent(msg, "text/html;charset=utf-8");
// 创建多重消息
Multipart multipart = new MimeMultipart();
// 设置文本消息部分
multipart.addBodyPart(messageBodyPart);
// 附件部分 添加附件
messageBodyPart = new MimeBodyPart();
// 设置要发送附件的文件路径 filename 是要添加的附件的路径 如 "E:\测试.doc"
DataSource source = new FileDataSource(filename);
messageBodyPart.setDataHandler(new DataHandler(source));
// messageBodyPart.setFileName(filename);
// 处理附件名称中文(附带文件路径)乱码问题
messageBodyPart.setFileName(MimeUtility.encodeText(filename));
multipart.addBodyPart(messageBodyPart);
// 发送完整消息
message.setContent(multipart);
// 发送消息
Transport.send(message);
// System.out.println("Sent message successfully....");
return true;
} catch (MessagingException e) {
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
return false;
}
//使用TLS加密通道
public static boolean sendMailByTLS(String ACCOUNT,String MAILPASS,String host,int port, String receive, String subject, String msg, String filename) throws GeneralSecurityException {
// 发件人电子邮箱
final String from = ACCOUNT;
// 发件人电子邮箱密码 这个密码是邮箱的客户端授权密码
final String pass = MAILPASS;
// 指定发送邮件的主机为 smtp.qq.com
// 获取系统属性
Properties properties = System.getProperties();
// 设置邮件服务器
properties.setProperty("mail.smtp.host", host);
// 端口号
properties.put("mail.smtp.port", port);
properties.put("mail.smtp.auth", "true");
MailSSLSocketFactory sf = new MailSSLSocketFactory();
sf.setTrustAllHosts(true);
properties.put("mail.smtp.starttls.enable", "true"); //开启tls
// 获取默认session对象
Session session = Session.getDefaultInstance(properties, new Authenticator() {
public PasswordAuthentication getPasswordAuthentication() { // qq邮箱服务器账户、第三方登录授权码
return new PasswordAuthentication(from, pass); // 发件人邮件用户名、密码
}
});
try {
// 创建默认的 MimeMessage 对象
MimeMessage message = new MimeMessage(session);
// Set From: 头部头字段 发件人邮箱
message.setFrom(new InternetAddress(from));
// Set To: 头部头字段 收件人邮箱
message.addRecipient(Message.RecipientType.TO, new InternetAddress(receive));
// Set Subject: 主题文字 主题
message.setSubject(subject);
// 创建消息部分
BodyPart messageBodyPart = new MimeBodyPart();
// 消息 消息内容,"text/html;charset=utf-8"让其识别html代码
messageBodyPart.setContent(msg, "text/html;charset=utf-8");
// 创建多重消息
Multipart multipart = new MimeMultipart();
// 设置文本消息部分
multipart.addBodyPart(messageBodyPart);
// 附件部分 添加附件
messageBodyPart = new MimeBodyPart();
// 设置要发送附件的文件路径 filename 是要添加的附件的路径 如 "E:\测试.doc"
DataSource source = new FileDataSource(filename);
messageBodyPart.setDataHandler(new DataHandler(source));
// messageBodyPart.setFileName(filename);
// 处理附件名称中文(附带文件路径)乱码问题
messageBodyPart.setFileName(MimeUtility.encodeText(filename));
multipart.addBodyPart(messageBodyPart);
// 发送完整消息
message.setContent(multipart);
// 发送消息
Transport.send(message);
// System.out.println("Sent message successfully....");
return true;
} catch (MessagingException e) {
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
return false;
}
}