错误
Got bad greeting from SMTP host: smtp.exmail.qq.com, port: 465, response: [EOF]
原配置:
spring:
mail:
default-encoding: UTF-8
host: smtp.exmail.qq.com
password: password
port: 465
username: username@mail.com
修改后:
spring:
mail:
default-encoding: UTF-8
host: smtp.exmail.qq.com
password: password
port: 465
username: username@mail.com
properties:
mail:
smtp:
auth: true
socketFactory:
class: javax.net.ssl.SSLSocketFactory
starttls:
enable: true