示例代码:
import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
public class SendEmail {
public static void main(String [] args) {
String mailHost = "smtp.exmail.qq.com";
String from = "ygb@baichengtax.com", to = "ygb@baichengtax.com";
String user = "ygb@baichengtax.com", password = "***********";
Properties props = new Properties();
props.setProperty("mail.smtp.host", mailHost);
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.port", "465:1");
// props.put("mail.smtp.socketFactory.class","javax.net.ssl.SSLSocketFactory");
Session session = Session.getInstance(props,new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(user, password);
}
});
session.setDebug(true);
try{
MimeMessage msg = new MimeMessage(session);
msg.setFrom(from);
msg.addRecipients(Message.RecipientType.TO, to);
msg.setSubject("A test mail");
msg.setText("This is test message;");
Transport.send(msg);
}catch (Exception e) {
e.printStackTrace();
}
}
}
参数配置注意两个地方:
1、 user 设置邮箱账号的全名, 包括邮箱服务器地址;
2、mail.smtp.port 设置为 465:1, 不能单独设置个456。
邮箱服务器设置:
具体设置方法参考:
如何设置IMAP、POP3/SMTP及其SSL加密方式? -帮助中心-企业邮