欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringBoot整合Mail发送邮件功能

程序员文章站 2024-01-02 16:01:34
目录前言maven依赖使用qq邮箱演示发送普通邮件验证码案例前言我们在网站上注册账号的时候一般需要获取验证码,而这个验证码一般发送在你的手机号上还有的是发送在你的邮箱中,注册,账号密码…都需要用到验证...

前言

我们在网站上注册账号的时候一般需要获取验证码,而这个验证码一般发送在你的手机号上还有的是发送在你的邮箱中,注册,账号密码…都需要用到验证,今天就演示一下如何用springboot整合mail发送邮箱。

maven依赖

<dependency>
	<groupid>org.springframework.boot</groupid>
	<artifactid>spring-boot-starter-mail</artifactid>
</dependency>

使用qq邮箱演示

国内qq邮箱的用户占多数,所以本文以qq邮箱作为演示。

使用qq邮箱需要开启smtp服务

qq邮箱默认关闭了smtp服务,所以需要我们手动打开:

SpringBoot整合Mail发送邮件功能

配置application.properties/yml

# 应用服务 web 访问端口
server.port=8080
# 邮箱用户名
spring.mail.username=your mail
# 授权码
spring.mail.password=授权码
# 邮箱主机
spring.mail.host=smtp.qq.com
# 开启ssl
spring.mail.properties.mail.smtp.ssl.enable=true
# 认证
spring.mail.properties.mail.smtp.auth=true
# 开启ssl安全模式
spring.mail.properties.mail.smtp.starttls.enable=true
# 必须启动ssl安全模式
spring.mail.properties.mail.smtp.starttls.required=true
# ssl config
# 端口
spring.mail.port=465
# 协议
spring.mail.protocol=smtp
# 默认编码
spring.mail.default-encoding=utf-8
# 套接字工厂端口
spring.mail.properties.mail.smtp.socketfactory.port=465
# 套接字工厂类
spring.mail.properties.mail.smtp.socketfactory.class=javax.net.ssl.sslsocketfactory

配置好这些后,springboot会自动帮我们配置好相关的邮件发送类。

发送普通邮件

@springboottest
class demo1applicationtests {

    @autowired
    javamailsender javamailsender;

    @test
    public void sendsimplemail() {
        // 构建一个邮件对象
        simplemailmessage message = new simplemailmessage();
        // 设置邮件主题
        message.setsubject("这是一封测试邮件");
        // 设置邮件发送者,这个跟application.yml中设置的要一致
        message.setfrom("1926585708@qq.com");
        // 设置邮件接收者,可以有多个接收者,中间用逗号隔开,以下类似
        // message.setto("1*****@qq.com","2*****qq.com");
        message.setto("1926585708@qq.com");
        // 设置邮件发送日期
        message.setsentdate(new date());
        // 设置邮件的正文
        message.settext("这是测试邮件的正文");
        // 发送邮件
        javamailsender.send(message);
    }
}

查看邮箱:

SpringBoot整合Mail发送邮件功能

验证码案例

使用thymeleaf模板搭建html页面

<!doctype html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="utf-8">
    <title>验证码</title>
</head>
<body>

<div style="text-align: center">
    请输入您的邮箱:<input id="email" type="text"> <input id="getcode" type="button" value="获取验证码"><br>
    验证码:<input id="code" type="text"><br>
    <input id="check" type="button" value="验证"><br>
</div>

<script type="text/javascript" th:src="@{/js/jquery-3.6.0.js}"></script>
<script>
    //发送验证码
    $("#getcode").click(function () {
        var btn = $("#getcode");
        var time = 30;//定义时间变量。用于倒计时用
        var timer = null;//定义一个定时器;
        timer = setinterval(function(){///开启定时器。函数内执行
            btn.disabled = true;
            btn.val(time+"秒后重新获取");    //点击发生后,按钮的文本内容变成之前定义好的时间值。
            time--;//时间值自减
            if(time==0){     //判断,当时间值小于等于0的时候
                btn.val('重新获取验证码'); //其文本内容变成……点击重新发送……
                btn.disabled = false;
                clearinterval(timer); //清除定时器
            }
        },1000)
        $.post({
            url : "/getmailcode",
            data : {"mail":$("#email").val()},
            success : function (data) {
                alert("验证码已发送,请注意查收");
            }
        });
    })
    //检查验证码
    $("#check").click(function (){
        $.post({
            url: "/checkcode",
            data: {"code":$("#code").val()},
            success:function (data){
                if (data==0){
                    alert("验证码错误")
                }else {
                    alert("验证码正确")
                }
            }
        })
    })
</script>
</body>
</html>

效果:

SpringBoot整合Mail发送邮件功能

定义controller:

/**
 * 邮箱验证码
 */
@controller
public class mailcodecontroller {

    @autowired
    mailutils mailutils;

    /**
     * 验证页面
     *
     */
    @requestmapping("/login")
    public string login(){
        return "login";
    }

    /**
     * 获取验证码
     * @param mail
     * @return
     */
    @postmapping("/getmailcode")
    @responsebody
    public string getmailcode(string mail, httpsession session){
        string mailcode = this.mailutils.getmailcode(mail);
        system.out.println("获取到验证码:"+mailcode);
        session.setattribute("code",mailcode);
        return "ok";
    }

    /**
     * 检查验证码
     * @param code
     * @return 1:正确 0:错误
     */
    @postmapping("/checkcode")
    @responsebody
    public string checkcode(string code, httpsession session){
        string checkcode = (string) session.getattribute("code");
        if (checkcode!=null){
            if (code.equals(checkcode)){
                return "1";
            }else {
                return "0";
            }
        }
        return "0";
    }


}

mailutils邮箱工具类:

@component
public class mailutils {

    @autowired
    private javamailsender mailsender;

    public string getmailcode(string mail){
        random random = new random();
        string code="";
        for (int i=0;i<6;i++)
        {
            code+=random.nextint(10);
        }
        //邮件设置1:一个简单的邮件
        simplemailmessage message = new simplemailmessage();
        message.setsubject("验证码消息");
        message.settext("您的验证码为 : 【 "+code+" 】");

        message.setto(mail);
        message.setfrom("1926585708@qq.com");
        mailsender.send(message);
        return code;
    }
}

验证效果:

SpringBoot整合Mail发送邮件功能

到此这篇关于springboot整合mail发送邮件的文章就介绍到这了,更多相关springboot发送邮件内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

上一篇:

下一篇: