在springboot项目中增加邮件功能 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> 在配置文件中配置为 spring.mail.host=smtp.mxhichina.com spring.mail.username=from@mail.com spring.mail.port=465 spring.mail.password=ENC(XmxK15odd+SF5VUGSFNUTse10lxijBIYz) spring.mail.properties.mail.smtp.auth=true spring.mail.properties.mail.smtp.starttls.enable=true spring.mail.properties.mail.smtp.starttls.required=true spring.... 有更新! Got bad greeting from SMTP host: smtp.yandex.ru, port: 465, response: [EOF]] java