2020-09-08 Email

2020-09-08  本文已影响0人  JalorOo

引入spring-boot-starter-mail 依赖包

<!-- 支持发送邮件 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-mail</artifactId>
</dependency>

在application.yml配置邮箱基本信息

spring:
  mail:
       host: smtp.exmail.qq.com
       protocol: smtp
       port: 465
       username: XXXX@xxx.com #邮箱地址
       password: XXXXXXX #邮箱密码
       properties:
          mail:
            smtp:
              auth: true
              ssl:
                enable: true
                socketFactory: 
                    class: com.sun.mail.util.MailSSLSocketFactory
                    fallback: false

上一篇 下一篇

猜你喜欢

热点阅读