我尝试使用Java创建一些自动发送邮件 但是在构建项目时会有一些错误。 这是代码。
package sendmail2;
import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.mail.internet.MimeMessage;
public class SendMail2 {
public static void main(String[] args) {
try{
String host ="smtp.gmail.com" ;
String user = "myemail@gmail.com";
String pass = "mypassword";
String to = "my reciever";
String from = "myemail@gmail.com";
String subject = "Test App";
String messageText = "Congrats";
boolean sessionDebug = false;
Properties props = System.getProperties();
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.host", host);
props.put("mail.smtp.port", "587");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.starttls.required", "true");
java.security.Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
Session mailSession = Session.getDefaultInstance(props, null);
mailSession.setDebug(sessionDebug);
Message msg = new MimeMessage(mailSession);
msg.setFrom(new InternetAddress(from));
InternetAddress[] address = {new InternetAddress(to)};
msg.setRecipients(Message.RecipientType.TO, address);
msg.setSubject(subject); msg.setSentDate(new Date());
msg.setText(messageText);
Transport transport=mailSession.getTransport("smtp");
transport.connect(host, user, pass);
transport.sendMessage(msg, msg.getAllRecipients());
transport.close();
System.out.println("message send successfully");
}
catch(Exception ex)
{
System.out.println(ex);
}
}
}
错误是
javax.mail.MessagingException:无法连接到SMTP主机:smtp.gmail.com,端口:587; 嵌套的异常是: java.net.ConnectException:连接超时:connect 建立成功(总时间:21秒)
我已经在库中添加了activation.jar和mail.jar。并在Gmail帐户中打开不太安全的应用访问权限。
问题是我不知道我的代码或某些错误以及使它起作用的解决方案
这是我第一次使用堆栈溢出,所以如果我的问题不清楚或难以阅读。请让我知道并为您的不便深表歉意。
答案 0 :(得分:0)
JavaMail常见问题解答中有tips for debugging connection problems。
很可能有防火墙阻止您直接连接。 JavaMAil常见问题解答还介绍了如何connect through a proxy server。