我正在尝试使用以下代码使用Zoho SMTP服务器发送邮件:
public void sendEmail(Email email) {
Properties props = setupMailEnv();
Session session = Session.getDefaultInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("sssxxxx@xxx.com", "xxxxx");
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress(email.getFromMailId()));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(email.getToEmailId()));
message.setSubject(email.getSubject());
message.setText(email.getBody());
Transport.send(message);
log.info("Mail Sent.");
} catch (MessagingException e) {
throw e;
}
}
private Properties setupMailEnv() {
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.zoho.com");
props.put("mail.smtp.socketFactory.port", "465");
props.put("mail.smtp.socketFactory.class", javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.port", "465");
props.setProperty("mail.smtp.socketFactory.fallback", "false");
props.put("mail.smtp.startssl.enable", "true");
props.put("mail.smtp.starttls.enable", "false");
return props;
}
当我执行此程序时,它给出以下异常:
javax.mail.MessagingException: Can't send command to SMTP host;
nested exception is:
java.net.SocketException: Connection closed by remote host
我已经提到了Zoho论坛,但他们都没有提供解决方案。我该如何解决这个问题?
答案 0 :(得分:2)
我使用以下属性来调试错误:
props.put("mail.debug", "true");
问题出在地址上。起始地址应与以下地址匹配:
new PasswordAuthentication("sssxxxx@xxx.com", "xxxxx");
我改变了它,一切都按预期正常工作。
答案 1 :(得分:1)
我代表Zoho Mail与您联系。
请将starttls.enable设置为True并检查您是否能够发送邮件。还可以尝试使用端口号'587'并检查它是否有效。
如果问题仍然存在,请发送电子邮件至支持[at] zohomail [dot] com,并附上完整的错误日志。另请提及您尝试发送邮件的Zoho电子邮件地址。这些信息将帮助我们进一步为您提供帮助。
此致 KARTHIK。