博客主页:我的主页
欢迎点赞 收藏 留言 欢迎讨论!
本文由 【泠青沼~】 原创,首发于 CSDN
由于博主是在学小白一枚,难免会有错误,有任何问题欢迎评论区留言指出,感激不尽!个人主页
使用SpringBoot搭建邮件服务器时,用QQ邮箱的smtp服务发送邮件遇到错误
springboot Got bad greeting from SMTP host: smtp.qq.com, port: 465, response: [EOF]
配置文件:application.properties
server.port=8082
spring.mail.host=smtp.qq.com
spring.mail.protocol=smtp
spring.mail.default-encoding=UTF-8
spring.mail.port=465
spring.mail.properties.mail.stmp.socketFactory.class=javax.net.ssl.SSLSocketFactory
spring.mail.properties.mail.debug=true
如果使用端口为465,将protocol的smtp改为smtps
将配置文件端口改为587,则可以使用smtp
均为SSL连接端口,因为qq不支持非SSL端口
重点在于protocal(视端口而定)和开启SSL(必须)
配置文件改为:
server.port=8082
spring.mail.host=smtp.qq.com
spring.mail.protocol=smtp
spring.mail.default-encoding=UTF-8
**spring.mail.port=587**
**spring.mail.properties.mail.stmp.ssl.enable=true**
spring.mail.properties.mail.stmp.socketFactory.class=javax.net.ssl.SSLSocketFactory
spring.mail.properties.mail.debug=true