com.sun.mail.util.MailConnectException:Couldn't connect to host, port:smtp.aliyun.com, 25; timeout


问题描述

SpringBoot项目部署到阿里服务器,发送邮箱报错com.sun.mail.util.MailConnectException:Couldn't connect to host, port:smtp.aliyun.com, 25; timeout ,在本地没问题

原因

阿里云禁用了25端口号

解决

在yml文件中 将25端口改为465端口,并启用smtps协议

mail:
        host: smtp.163.com
        username: ******@163.com
        password: ******
        default-encoding: UTF-8
        port: 465
        protocol: smtps

文章作者: fFee-ops
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 fFee-ops !
评论
  目录