Spring Boot使用qq邮箱实现验证码发送

1、获取授权码

登录qq邮箱,点击【设置】——》》【账户】
在这里插入图片描述
下滑至下图所示位置,点击开启,按要求发送短信验证码
Spring Boot使用qq邮箱实现验证码发送_第1张图片
Spring Boot使用qq邮箱实现验证码发送_第2张图片
!!!
记录图中的授权码,下面一步会用到
Spring Boot使用qq邮箱实现验证码发送_第3张图片

2、配置yml文件

spring:
  mail:
    # 配置 SMTP 服务器地址
    host: smtp.qq.com
    # 发送者邮箱
    username: xxxxxxxxx@qq.com
    # 配置密码,注意不是真正的密码,而是刚刚申请到的授权码
    password: **********
    # 端口号465587
    port: 587
    # 默认的邮件编码为UTF-8
    default-encoding: UTF-8
    # 配置SSL 加密工厂
    properties:
      mail:
        smtp:
          socketFactoryClass: javax.net.ssl.SSLSocketFactory
        #表示开启 DEBUG 模式,这样,邮件发送过程的日志会在控制台打印出来,方便排查错误
        debug: true

Spring Boot使用qq邮箱实现验证码发送_第4张图片

3、添加并刷新maven依赖


<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-mailartifactId>
dependency>

4、编写controller层

import org.springframework.beans.factory.annotation.Value;
import org.springframework.mail.MailException;
import org.springframework.mail.SimpleMailMessage;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

import javax.annotation.Resource;
import java.util.Random;

@RestController
@RequestMapping("email")
public class EmailController {

    @Resource
    private JavaMailSender javaMailSender;

    //读取yml文件中username的值并赋值给form
    @Value("${spring.mail.username}")
    private String from;

    @RequestMapping("sendEmail")
    public String sendSimpleMail(@RequestParam(value = "emailReceiver") String emailReceiver) {
            // 构建一个邮件对象
            SimpleMailMessage message = new SimpleMailMessage();
            // 设置邮件发送者
            message.setFrom(from);
            // 设置邮件接收者
            message.setTo(emailReceiver);
            // 设置邮件的主题
            message.setSubject("登录验证码");
            // 设置邮件的正文
            Random random = new Random();
            StringBuilder code = new StringBuilder();
            for (int i = 0; i < 6; i++) {
                int r = random.nextInt(10);
                code.append(r);
            }
            String text = "您的验证码为:" + code + ",请勿泄露给他人。";
            message.setText(text);
            // 发送邮件
        try {
            javaMailSender.send(message);
            return "发送成功";
        } catch (MailException e) {
            e.printStackTrace();
        }
        return "发送失败";
    }
}

测试效果如下
Spring Boot使用qq邮箱实现验证码发送_第5张图片

你可能感兴趣的:(Spring,Boot,Java,spring,spring,boot,java)