程序尝试发送电子邮件,但会抛出运行时异常:AuthenticationFailedException 。我输入了用户名& pwd corect。请告诉我它的适当解决方案。谢谢
import java.util.Properties;
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;
public class SendMailTLS {
public static void main(String[] args) {
final String username = "test@gmail.com";
final String password = "test1234";
Properties props = new Properties();
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.host", "smtp.gmail.com");
props.put("mail.smtp.port", "587");
Session session = Session.getInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress("test@gmail.com"));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse("testing@gmail.com"));
message.setSubject("Testing Subject");
message.setText("Dear Mail Crawler,"
+ "\n\n No spam to my email, please!");
Transport.send(message);
System.out.println("Done");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
}
}
需要注意的是,我已经在堆栈溢出中经历了另一个关于此问题的解决方案,但没有一个解决方案符合我的目的。这就是我发布这个问题的原因。任何人都可以为此提供任何合适的解决方案吗?
答案 0 :(得分:0)
添加
session.setDebug(true);
在try{
之前,重新启动并查看输出。
当您尝试通过Gmail发送邮件时:您必须明确允许 不安全的连接才能使用您的Gmail帐户。错误消息中包含包含更多信息的链接。