咳咳~最头疼的就是莫名其妙的错误. 本来今年6月份运行通过的代码,过俩月就报错了. javax.mail.MessagingException: Could not connect to SMTP host: smtp.exmail.qq.com, port: 465; nested exception is: javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure at com.sun.mail.…
阿里云ECS默认禁用25端口导致发邮件失败. 方法一: 使用shell脚本发送邮件,需要配置mailx 1.安装软件 yum install mailx 2.配置 vim /etc/mail.rc在文件最后加上如下内容: set smtp=smtps://smtp.exmail.qq.com:465 #邮箱服务器地址 set from=xxxx@xxx.com #发送邮件的来源 set smtp-auth-user=xxxx@xxx.com #用户名 set smtp-…