SpringBoot项目本地可以发送邮件,部署到阿里云服务器发送邮件失败的解决方法

Posted 孤独二世

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot项目本地可以发送邮件,部署到阿里云服务器发送邮件失败的解决方法相关的知识,希望对你有一定的参考价值。

 

在application.yml文件中配置

 #邮件设置
spring:
  mail:
    host: smtp.exmail.qq.com
    port: 465
    username: xxx@qq.com
    password: xxx
    default-encoding: UTF-8
    #配置阿里云服务器发送邮件
    properties:
      mail:
        smtp:
          ssl:
            trust: smtp.exmail.qq.com
          socketFactory:
            class: javax.net.ssl.SSLSocketFactory
            port: 465
          auth: true
          starttls:
            enable: true
            required: true

 或在application.properties中配置

#邮件配置
spring.mail.host=smtp.exmail.qq.com
spring.mail.port=465
spring.mail.username=xxx@qq.com
spring.mail.password=xxx
spring.mail.default-encoding=UTF-8
#配置阿里云服务器发送邮件
spring.mail.properties.mail.smtp.ssl.trust=smtp.exmail.qq.com
spring.mail.properties.mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
spring.mail.properties.mail.smtp.socketFactory.port=465
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
spring.mail.properties.mail.smtp.starttls.required=true

  

以上是关于SpringBoot项目本地可以发送邮件,部署到阿里云服务器发送邮件失败的解决方法的主要内容,如果未能解决你的问题,请参考以下文章

为啥部署 django docker 容器后,邮件发送失败?

使用Zabbix服务端本地邮箱账号发送报警邮件的部署记录

springboot发送邮件

Jenkins部署码云SpringBoot项目到远程服务器

SpringBoot实现邮件发送

SpringBoot 实现发送简单邮件