• Java 实现发送邮件


    javax.mail.AuthenticationFailedException: 530 Error: A secure connection is requiered(such as ssl). More information at http://service.mail.qq.com/cgi-bin/help?id=28

    在java发送邮件的时候,出现了这个错误。

    原因:QQ邮箱需要证书认证。

    解决办法:

    在原代码中加入下面代码

    1.  // 进行证书认证   
    2.                 MailSSLSocketFactory sf = new MailSSLSocketFactory();  
    3.                 sf.setTrustAllHosts(true);  
    4.                 properties.put("mail.smtp.ssl.enable", "true");  
    5.                 properties.put("mail.smtp.ssl.socketFactory", sf); 
  • 相关阅读:
    数据库操作
    jquery 第一章
    算法很美 第一章
    python 学习第四天
    python学习第三天
    python学习第二天
    学习python的第一天
    C#-线程
    C#-流、存储
    C#-集合
  • 原文地址:https://www.cnblogs.com/zhukaixin/p/9146658.html
Copyright © 2020-2023  润新知