当前位置:   article > 正文

springboot集成邮件功能_springboot集成mail

springboot集成mail

我这里使用qq邮箱和企业qq邮箱做演示

1.导入依赖
       <dependency>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-starter-mail</artifactId>
       </dependency>
  • 1
  • 2
  • 3
  • 4
2.设置基本配置

     1).企业邮箱

 spring:
  mail:
    # 配置 SMTP 服务器地址
    host: smtp.exmail.qq.com
    # 发送者邮箱账号
    username: 企业邮箱账号
    # 配置企业邮箱的密码(这里是密码)
    password: 企业邮箱密码
    # 端口号发送465
    port: 465
    # 默认的邮件编码为UTF-8
    # 配置SSL 加密工厂
    default-encoding: UTF-8
    properties:
      mail:
        smtp:
          ssl:
            enable: true
          auth: true
          starttles:
            enable: true
            required: true
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

     2).qq邮箱
        (1).获取授权码,一步步来获取授权码
在这里插入图片描述

在这里插入图片描述

        (2).配置属性文件

spring:
  mail:
    # 配置 SMTP 服务器地址
    host: smtp.qq.com
    # 发送者邮箱
    username: qq邮箱账号
    # 配置密码,注意不是真正的密码,而是刚刚申请到的授权码
    password: qq邮箱授权码
    # 端口号587
    port: 587 
    # 默认的邮件编码为UTF-8
    # 配置SSL 加密工厂
    default-encoding: UTF-8
    properties:
      mail:
        smtp:
          ssl:
            enable: true
          auth: true
          starttles:
            enable: true
            required: true
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
3.设置邮件bean(这步可以不要)

在这里插入图片描述

public class ToEmail implements Serializable {

    /**
     * 邮件接收方,可多人
     */
    private String[] tos;
    /**
     * 邮件主题
     */
    private String subject;
    /**
     * 邮件内容
     */
    private String content;

    public String[] getTos() {
        return tos;
    }

    public void setTos(String[] tos) {
        this.tos = tos;
    }

    public String getSubject() {
        return subject;
    }

    public void setSubject(String subject) {
        this.subject = subject;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }
}    
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
4.编写邮件发送代码
/**
 * 发送邮件
 */
@RestController
@RequestMapping("/web/mail")
public class SendMessageCtrl {

    @Value("${spring.mail.username}")
    private String emailUser;

    @Autowired
    private JavaMailSender mailSender;


    /**
     * 普通邮件发送
     */
    @RequestMapping(value = "/send", method = RequestMethod.POST)
    public WebResponse sendCommonEmail(@RequestBody ToEmail toEmail) {
        //创建简单邮件消息
        SimpleMailMessage message = new SimpleMailMessage();
        //谁发的
        message.setFrom(emailUser);
        //谁要接收
        message.setTo(toEmail.getTos());
        //邮件标题
        message.setSubject(toEmail.getSubject());
        //邮件内容
        message.setText(toEmail.getContent());
        try {
            mailSender.send(message);
        } catch (MailException e) {
            e.printStackTrace();
        }
        return new WebResponse("邮件已发送:"+toEmail.toString());
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
5.测试发送邮件

在这里插入图片描述
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/95363?site
推荐阅读
相关标签
  

闽ICP备14008679号