是否可以使用OVH使用javax邮件? 我可以使用Yahoo邮件,但是当我尝试将它与OVH一起使用时,我收到了这个错误:
at org.springframeworkjavax.mail.MessagingException:异常 阅读反应;嵌套异常是:java.net.SocketException: 连接重置
连接属性是:
properties.put("mail.smtp.starttls.enable", "true");
properties.put("mail.smtp.host", host);
properties.put("mail.smtp.user", from);
properties.put("mail.smtp.password", pass);
properties.put("mail.smtp.port", "465");
properties.put("mail.smtp.auth", "true");
properties.put("mail.imap.ssl.enable", "true");
如果有人能在这里看到我错在哪里......
感谢。
答案 0 :(得分:0)
我尝试使用TLD端口587成功(如上面的@ Mo.Ashfaq所示)。
OVH的文档可在此处查看:http://help.ovh.com/EmailConfiguration
答案 1 :(得分:0)
此配置对我有用:
properties.put("mail.smtp.host", "ssl0.ovh.net");
properties.put("mail.smtp.user", user);
properties.put("mail.smtp.password", pass);
properties.put("mail.smtp.port", "587");
properties.put("mail.smtp.auth", "true");
properties.put("mail.smtp.starttls.enable", "true");