这是我用来发送电子邮件的代码:
@Override
public void sendEmail(String from, String to, String subject, String content) {
//we set the credentials
final String username = ConfigService.mailUserName;
final String password = ConfigService.mailPassword;
//we set the email properties
Properties props = new Properties();
props.put("mail.smtp.host", ConfigService.mailHost);
props.put("mail.smtp.socketFactory.port", ConfigService.mailSmtpSocketPort);
props.put("mail.smtp.socketFactory.class",
"javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.port", ConfigService.mailSmtpPort);
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(from));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(to));
message.setSubject(subject);
message.setText(content);
Transport.send(message);
LOG.info(" Email has been sent");
} catch (MessagingException e) {
LOG.error(" Email can not been sent");
e.printStackTrace();
}
}
当我运行时,我获得了下一个错误:
javax.mail.MessagingException:无法连接到SMTP主机:smtp.gmail.com,port:465;
嵌套异常是:
java.net.ConnectException:连接被拒绝了 在com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1961)
at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:654)
我在这里看到another question与此相关,但在这个问题上没有被接受的答案。我可以ping smtp.gmail.com
,也可以使用凭据访问gmail帐户。
这是在我的机器上运行。
知道可能是什么问题吗?
答案 0 :(得分:0)
在使用NetBeans进行调试时,我遇到过这个问题,甚至执行实际的jar文件。防病毒软件会阻止发送电子邮件。您应该在调试期间暂时禁用防病毒软件,或者排除NetBeans并扫描实际的jar文件。就我而言,我使用的是Avast。
请参阅此链接,了解如何排除:How to Add File/Website Exception into avast! Antivirus 2014
它对我有用。