springboot怎么实现sendmail?实现流程介绍

Spring Boot 是 在 Spring 的基础上提供的一套全新的开源框架,它具有 Spring 一切优秀特性,设计这个框架的目的是为了简化 Spring 应用的搭建和开发过程。那springboot怎么实现sendmail?下面来我们就来给大家讲解一下。

SpringBoot中发送邮件具体的使用步骤如下:

1、添加Starter模块依赖

2、添加Spring Boot邮箱配置(QQ/网易163/Gmail)

3、调用JavaMailSender接口发送邮件

1、添加发送邮件需要的maven依赖

在 pom.xml 配置文件中加入 spring-boot-starter-mail 依赖。

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

2、添加邮箱配置参数

如其他自动化配置模块一样,在完成了依赖引入之后,只需要在application.properties中配置相应的属性内容。

下面我们以QQ邮箱为例,注意替换成自己的发件邮箱和授权码,关于如何获取授权码请点击这里:获取QQ邮箱授权码

#
邮箱配置# 平台地址, 这里用的是qq邮箱, 使用其他邮箱请更换
spring.mail.host = smtp.qq.com# 端口号
spring.mail.port = XXX# 发送邮件的邮箱地址: 改成自己的邮箱
spring.mail.username = xxxxxxxxxxx# 发送短信后它给你的授权码 填写到这里
spring.mail.password = xxxxxxxxxxxx# 与发件邮箱一致
spring.mail.from = xxxxxxxxxxx

3、调用JavaMailSender接口发送邮件

由于Spring Boot的starter模块提供了自动化配置,所以在引入了spring-boot-starter-mail依赖之后,会根据配置文件中的内容去创建JavaMailSender实例,因此我们可以直接在需要使用的地方直接@Autowired来引入邮件发送对象。

(1)发送邮件工具类 MailUtil

package com.hs.demo.mail;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.core.io.FileSystemResource;
import org.springframework.mail.SimpleMailMessage;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.mail.javamail.MimeMessageHelper;
import org.springframework.stereotype.Service;
import javax.mail.MessagingException;
import javax.mail.internet.MimeMessage;
import java.io.File;
/**
 * 发送邮件工具类 MailUtil
 *
 * @author heshi
 * @date 2021/3/22 16:52
 */
@Service
public class EmailUtil implements EmailService
{
    private final Logger logger = LoggerFactory.getLogger(this.getClass());
    //Spring Boot 提供了一个发送邮件的简单抽象,使用的是下面这个接口,这里直接注入即可使用
    @Autowired
    private JavaMailSender mailSender;
    // 配置文件中我的qq邮箱
    @Value("${spring.mail.from}")
    private String from;
    /**
     * 简单文本邮件
     * @param to 收件人
     * @param subject 主题
     * @param content 内容
     */
    @Override
    public void sendSimpleMail(String to, String subject, String content)
    {
        //创建SimpleMailMessage对象
        SimpleMailMessage message = new SimpleMailMessage();
        //邮件发送人
        message.setFrom(from);
        //邮件接收人
        message.setTo(to);
        //邮件主题
        message.setSubject(subject);
        //邮件内容
        message.setText(content);
        //发送邮件
        mailSender.send(message);
    }
    /**
     * html邮件
     * @param to 收件人,多个时参数形式 :"xxx@xxx.com,xxx@xxx.com,xxx@xxx.com"
     * @param subject 主题
     * @param content 内容
     */
    @Override
    public void sendHtmlMail(String to, String subject, String content)
    {
        //获取MimeMessage对象
        MimeMessage message = mailSender.createMimeMessage();
        MimeMessageHelper messageHelper;
        try
        {
            messageHelper = new MimeMessageHelper(message, true);
            //邮件发送人
            messageHelper.setFrom(from);
            //邮件接收人,设置多个收件人地址
            InternetAddress[] internetAddressTo = InternetAddress.parse(to);
            messageHelper.setTo(internetAddressTo);
            //messageHelper.setTo(to);
            //邮件主题
            message.setSubject(subject);
            //邮件内容,html格式
            messageHelper.setText(content, true);
            //发送
            mailSender.send(message);
            //日志信息
            logger.info("邮件已经发送。");
        }
        catch (Exception e)
        {
            logger.error("发送邮件时发生异常!", e);
        }
    }
    /**
     * 带附件的邮件
     * @param to 收件人
     * @param subject 主题
     * @param content 内容
     * @param filePath 附件
     */
    @Override
    public void sendAttachmentsMail(String to, String subject, String content, String filePath)
    {
        MimeMessage message = mailSender.createMimeMessage();
        try
        {
            MimeMessageHelper helper = new MimeMessageHelper(message, true);
            helper.setFrom(from);
            helper.setTo(to);
            helper.setSubject(subject);
            helper.setText(content, true);
            FileSystemResource file = new FileSystemResource(new File(filePath));
            String fileName = filePath.substring(filePath.lastIndexOf(File.separator));
            helper.addAttachment(fileName, file);
            mailSender.send(message);
            //日志信息
            logger.info("邮件已经发送。");
        }
        catch (Exception e)
        {
            logger.error("发送邮件时发生异常!", e);
        }
    }
}

(2)EmailService接口

package com.cernet.notice.mail;
/**
 * @author heshi
 */
public interface EmailService
{
    /**
     * 发送文本邮件
     *
     * @param to      收件人
     * @param subject 主题
     * @param content 内容
     */
    void sendSimpleMail(String to, String subject, String content);
    /**
     * 发送HTML邮件
     *
     * @param to      收件人
     * @param subject 主题
     * @param content 内容
     */
    public void sendHtmlMail(String to, String subject, String content);
    /**
     * 发送带附件的邮件
     *
     * @param to       收件人
     * @param subject  主题
     * @param content  内容
     * @param filePath 附件
     */
    public void sendAttachmentsMail(String to, String subject, String content, String filePath);
}

(3)单元测试

package com.hs.demo;
import com.hs.demo.mail.EmailService;
import com.hs.demo.mail.EmailUtil;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class SendEmailApplicationTests
{
    /**
     * 注入发送邮件的接口
     */
    @Autowired
    private EmailUtil mailService;
    /**
     * 测试发送文本邮件
     */
    @Test
    public void sendmail()
    {
        mailService.sendSimpleMail("xxx@qq.com", "主题:你好普通邮件", "内容:第一封邮件");
    }
    @Test
    public void sendmailHtml()
    {
        mailService.sendHtmlMail("xxx@qq.com", "主题:你好html邮件", "<h1>内容:第一封html邮件</h1>");
    }
}

效果图如下:

springboot怎么实现sendmail?实现流程介绍.jpg

springboot实现sendmail就是以上三个步骤,因为SpringBoot的Starter模块为此提供了自动化配置,所以在引入了spring-boot-starter-mail依赖之后,会根据配置文件中的内容去创建JavaMailSender实例,因此我们可以直接在需要使用的地方直接@Autowired来引入邮件发送对象。最后大家如果想要了解更多java架构师知识,敬请关注奇Q工具网。

推荐阅读:

java终止程序语句怎么写?Java语句有哪些?

springboot怎么启动项目?springboot启动项目方法

程序员面试智力题有哪些?程序员面试智力题分享