是因为JavaMail默认使用的是旧版的TLS协议,而gmail要求使用更安全的TLS版本。为了解决这个问题,可以通过以下步骤进行配置:
setProperty
方法设置mail.smtp.starttls.enable
属性为true
,以启用TLS加密。mail.smtp.ssl.trust
属性为smtp.gmail.com
,以信任gmail的证书。下面是一个示例代码片段,展示了如何配置JavaMail以解决TLS问题:
import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;
public class EmailSender {
public static void main(String[] args) {
String host = "smtp.gmail.com";
String port = "587";
String username = "your_email@gmail.com";
String password = "your_password";
Properties props = new Properties();
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.host", host);
props.put("mail.smtp.port", port);
Session session = Session.getInstance(props, new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress(username));
message.setRecipients(Message.RecipientType.TO, InternetAddress.parse("recipient_email@gmail.com"));
message.setSubject("Test Email");
message.setText("This is a test email.");
Transport.send(message);
System.out.println("Email sent successfully.");
} catch (MessagingException e) {
e.printStackTrace();
}
}
}
这样配置后,JavaMail将使用TLS加密连接到gmail服务器,并成功发送邮件。
推荐的腾讯云相关产品:腾讯云邮件推送(https://cloud.tencent.com/product/ses)
请注意,以上答案仅供参考,实际应用中可能需要根据具体情况进行调整和配置。
领取专属 10元无门槛券
手把手带您无忧上云