import java.util.Date;
import java.util.Properties;
import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
/**
*
* @author Qixuan.Chen
*/
public class SendEmail {
public static final String HOST = "smtp.126.com";
public static final String PROTOCOL = "smtp";
public static final int PORT = 25;
public static final String FROM = "**********@126.com";
public static final String PWD = "**********";
/**
* 获取Session
* @return
*/
private static Session getSession() {
Properties props = new Properties();
props.put("mail.smtp.host", HOST);
props.put("mail.store.protocol" , PROTOCOL);
props.put("mail.smtp.port", PORT);
props.put("mail.smtp.auth" , true);
Authenticator authenticator = new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(FROM, PWD);
}
};
Session session = Session.getDefaultInstance(props , authenticator);
return session;
}
public static void send(String title,String toEmail , String content) {
Session session = getSession();
try {
System.out.println("--send--"+content);
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress(FROM));
InternetAddress[] address = {new InternetAddress(toEmail)};
msg.setRecipients(Message.RecipientType.TO, address);
msg.setSubject(title);
msg.setSentDate(new Date());
msg.setContent(content , "text/html;charset=utf-8");
Transport.send(msg);
}
catch (MessagingException mex) {
mex.printStackTrace();
}
}
public static void main(String[] args) {
send("激活信息","**********@163.com" , "http://**********/ftcms");
}
}