我有一个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:将电子邮件发送给 以下服务器失败:smtp.gmail.com:465
答案 0 :(得分:0)
这是因为SMTP中继需要身份验证,您必须先使用gmail user / pass登录才能使用中继。
我之前从未使用过公共电子邮件,但是经过一些谷歌搜索,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");