gpt4 book ai didi

java - org.apache.commons.mail.EmailException : Sending the email to the following server failed : smtp. gmail.com:465

转载 作者:行者123 更新时间:2023-11-28 22:27:37 36 4
gpt4 key购买 nike

我有一个 Maven 项目,使用 JSF 2.2、Tomcat 7 并使用 Apache Commons 发送电子邮件。

这是我的代码

try {
// Create the email message
HtmlEmail email = new HtmlEmail();
email.setSmtpPort(465); //email.setSslSmtpPort("465");
email.setSSLOnConnect(true);
email.setHostName("smtp.gmail.com");
email.addTo("test@gmail.com", "test");
email.setFrom(getEmail(), getName());
email.setSubject(getSubject());
email.setHtmlMsg("<html>Test</html>"); // set the html message
email.setTextMsg(getText());// set the alternative message
email.send();// send the email
} catch (EmailException e) {
logger.error("Exception sending email: ", e);
} catch (Exception ex) {
logger.error("Exception sending email: ", ex);
}

当我尝试在 Tomcat 7 中运行代码时,出现以下异常:

org.apache.commons.mail.EmailException: Sending the email to the following server failed : smtp.gmail.com:465

最佳答案

这是因为 SMTP 中继需要身份验证,您必须使用 gmail 用户/密码登录才能使用中继。

我以前从未使用过公共(public)电子邮件,但经过一番谷歌搜索后,i found this用于通过 gmail 发送电子邮件。

HtmlEmail email = new HtmlEmail();

String authuser = "user";
String authpwd = "pass";

email.setAuthenticator(new DefaultAuthenticator(authuser, authpwd));

email.setHostName("smtp.gmail.com");

// properties to configure encryption
email.getMailSession().getProperties().put("mail.smtps.auth", "true");
email.getMailSession().getProperties().put("mail.debug", "true");
email.getMailSession().getProperties().put("mail.smtps.port", "587");
email.getMailSession().getProperties().put("mail.smtps.socketFactory.port", "587");
email.getMailSession().getProperties().put("mail.smtps.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
email.getMailSession().getProperties().put("mail.smtps.socketFactory.fallback", "false");
email.getMailSession().getProperties().put("mail.smtp.starttls.enable", "true");

关于java - org.apache.commons.mail.EmailException : Sending the email to the following server failed : smtp. gmail.com:465,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35905163/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com