SpringBoot 2.1.1.RELEASE 集成Email

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
[email protected]
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

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章