电光石火-穿越时空电光石火-穿越时空


SpringBoot配置Email

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

yml配置

spring:
  mail:
    host: smtp.163.com
    port: 465
    protocol: smtp
    test-connection: false
    default-encoding: UTF-8
    username: xxx@163.com
    password: 123456
    properties:
      mail:
        imap:
          ssl:
            socketFactory:
              fallback: false
        smtp:
          ssl:
            enable: true
            socketFactory:
              class: com.fintech.modules.util.MailSSLSocketFactory
          auth : true
          timeout : 2000
          starttls:
            enable : true
            required : true
本博客所有文章如无特别注明均为原创。作者:似水的流年
版权所有:《电光石火-穿越时空》 => SpringBoot配置Email
本文地址:http://ilkhome.cn/index.php/archives/609/
欢迎转载!复制或转载请以超链接形式注明,文章为 似水的流年 原创,并注明原文地址 SpringBoot配置Email,谢谢。

评论