🐛 邮件发送失败问题修复

This commit is contained in:
ronger 2020-03-27 16:15:58 +08:00
parent 98d3ee1ce8
commit 218b4a06a7

View File

@ -63,7 +63,8 @@ public class JavaMailServiceImpl implements JavaMailService {
private Integer sendCode(String to, Integer type) throws MessagingException {
Properties props = new Properties();
// 表示SMTP发送邮件需要进行身份验证
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.auth", true);
props.put("mail.smtp.ssl.enable", true);
props.put("mail.smtp.host", SERVER_HOST);
props.put("mail.smtp.port", SERVER_PORT);
// 如果使用ssl则去掉使用25端口的配置进行如下配置,