import com.goldcard.sysManagement.common.config.Constant;
import java.util.Date;
import java.util.Properties;
import javax.mail.Address;
import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.Message.RecipientType;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
public class MailSender {
public static boolean send(Address[] to, Address[] cc, Address[] bcc,String subject, String body) {
try {
Properties props = System.getProperties();
props.put("mail.host", Constant.smtpServer);
props.put("mail.smtp.auth", Boolean.valueOf(true));
Authenticator authenticator = new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(Constant.account, Constant.password);
}
};
Session session = Session.getInstance(props, authenticator);
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress(Constant.account));
message.setSubject(subject);
message.setRecipients(Message.RecipientType.TO, to);
message.setRecipients(Message.RecipientType.CC, cc);
message.setRecipients(Message.RecipientType.BCC, bcc);
message.setSentDate(new Date());
message.setText(body);
Transport.send(message);
return true;
} catch (Exception e) {
e.printStackTrace();
}
return false;
}
public static boolean send(Address to, Address cc, Address bcc, String subject, String body) {
try {
Properties props = System.getProperties();
props.put("mail.host", Constant.smtpServer);
props.put("mail.smtp.auth", Boolean.valueOf(true));
Authenticator authenticator = new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(Constant.account,Constant.password);
}
};
Session session = Session.getInstance(props, authenticator);
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress(Constant.account));
message.setSubject(subject);
message.setRecipient(Message.RecipientType.TO, to);
message.setRecipient(Message.RecipientType.CC, cc);
message.setRecipient(Message.RecipientType.BCC, bcc);
message.setSentDate(new Date());
message.setText(body);
Transport.send(message);
return true;
} catch (Exception e) {
e.printStackTrace();
}
return false;
}
}
Java MailSender Spring自带的邮件推送功能实现
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 前记 目前实现推送的方式是很多的,可以用一些大公司推出的sdk,如:友盟,个推,小米。。。,而实现推送功能也有许多...
- 我用163和qq已经实现了 很狗血的是我头一天搞了半天总是发送失败,说连接不上服务,第二天到公司一发送就成功了,不...