Spring Boot发送邮件(使用Thymeleaf模板)

环境: Spring Boot 2.1.5.RELEASE 、Java 8

构建环境

pom.xml文件中加入依赖

<!-- Thymeleaf 模板引擎 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

<!-- 发送邮件 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-mail</artifactId>
</dependency>

application.properties文件中加入163邮箱的配置

## 发送邮件配置
spring.mail.host=smtp.163.com   # 163邮箱的smtp
spring.mail.port=25				# 端口,
spring.mail.username=邮箱的用户名
spring.mail.password=邮箱的授权码(不是登录密码)
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true

163邮箱的收取邮件支持POP/IMAP两种协议,发送邮件采用SMTP协议,收件和发件均使用SSL协议来进行加密传输,采用SSL协议需要单独对帐户进行设置。采用SSL协议和非SSL协议时端口号有所区别,参照下表的一些常见配置组合:

类型服务器名称服务器地址SSL协议端口号非SSL协议端口号
收件服务器POPpop.163.com995110
收件服务器IMAPimap.163.com993143
发件服务器SMTPsmtp.163.com465/99425

163邮箱的地址和端口: http://help.163.com/10/0731/11/6CTUBPT300753VB8.html

发送邮件的工具类


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.mail.javamail.JavaMailSender;
import org.springframework.mail.javamail.MimeMessageHelper;
import org.springframework.stereotype.Component;
import org.thymeleaf.TemplateEngine;
import org.thymeleaf.context.Context;

import javax.mail.MessagingException;
import javax.mail.internet.MimeMessage;
import java.util.Map;

@Component
public class EmailUtil {

    private static final Logger logger = LoggerFactory.getLogger(EmailUtil.class);

    @Autowired
    private JavaMailSender javaMailSender;

    @Autowired
    private TemplateEngine templateEngine;

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

    public void sendSimpleMail(Map<String, Object> valueMap){
        MimeMessage mimeMessage = null;
        try {
            mimeMessage = javaMailSender.createMimeMessage();
            MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true);
            // 设置发件人邮箱
            helper.setFrom(senderMailAddress);
            // 设置收件人邮箱
            helper.setTo((String[])valueMap.get("to"));
            // 设置邮件标题
            helper.setSubject(valueMap.get("title").toString());
            // 设置邮件正文
            helper.setSubject(valueMap.get("content").toString());
            // 添加正文(使用thymeleaf模板)
            Context context = new Context();
            context.setVariables(valueMap);
            String content = this.templateEngine.process("mail", context);
            helper.setText(content, true);
            // 发送邮件
            javaMailSender.send(mimeMessage);
        }  catch (MessagingException e) {
            logger.error("发送邮件抛出了异常,信息为:"+ e.getCause());
        }
    }
}

HTML模板mail.html代码

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>邮箱发送</title>
</head>
<body>
<p><span th:text="${title}"></span></p>
<p th:text="${content}"></p>
</body>
</html>

MailController.java类中的代码


import com.tengxt.demo.util.EmailUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import java.util.HashMap;
import java.util.Map;

@Controller
public class MailController {

    @Autowired
    private EmailUtil emailUtil;

    @RequestMapping("/mail")
    public void sendMail(){
        Map<String, Object> valueMap = new HashMap<>();
        valueMap.put("to", new String[]{"收件人邮箱1","收件人邮箱2",...);
        valueMap.put("title", "测试邮件标题");
        valueMap.put("content", "测试邮件内容");
		// 调用发送邮件的方法
        emailUtil.sendSimpleMail(valueMap);
    }
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值