首页 > 编程语言 > 详细

SpringBoot 2.1.1.RELEASE 集成Email

时间:2018-12-14 00:41:14      阅读:332      评论:0      收藏:0      [点我收藏+]
SpringBoot 2.1.1.RELEASE 集成Email

依赖配置:


<!-- mail start -->
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-mail</artifactId>
</dependency>

配置文件:

### mail邮件配置
spring.mail.host=smtp.xxx.com.cn
spring.mail.username=xxx@xxx.com.cn
spring.mail.password=xxxx
spring.mail.default-encoding=UTF-8
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
spring.mail.properties.mail.smtp.starttls.required=true

举例:
http://www.qchcloud.cn/system/article/show/71

SpringBoot 2.1.1.RELEASE 集成Email

原文:http://blog.51cto.com/14042154/2330251

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!