`
rensanning
  • 浏览: 3547938 次
  • 性别: Icon_minigender_1
  • 来自: 大连
博客专栏
Efef1dba-f7dd-3931-8a61-8e1c76c3e39f
使用Titanium Mo...
浏览量:38135
Bbab2146-6e1d-3c50-acd6-c8bae29e307d
Cordova 3.x入门...
浏览量:607261
C08766e7-8a33-3f9b-9155-654af05c3484
常用Java开源Libra...
浏览量:682256
77063fb3-0ee7-3bfa-9c72-2a0234ebf83e
搭建 CentOS 6 服...
浏览量:89318
E40e5e76-1f3b-398e-b6a6-dc9cfbb38156
Spring Boot 入...
浏览量:401805
Abe39461-b089-344f-99fa-cdfbddea0e18
基于Spring Secu...
浏览量:69685
66a41a70-fdf0-3dc9-aa31-19b7e8b24672
MQTT入门
浏览量:91692
社区版块
存档分类
最新评论

Spring Boot 入门 - 基础篇(10)- 发送邮件

 
阅读更多
(1)配置
pom.xml
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-mail</artifactId>
</dependency>


application.properties
引用
spring.mail.host=localhost
spring.mail.protocol=smtp # Protocol
spring.mail.port=25 # SMTP server port.
spring.mail.username= # Login user of the SMTP server.
spring.mail.password= # Login password of the SMTP server.
spring.mail.default-encoding=UTF-8 # Default MimeMessage encoding.
# Additional JavaMail session properties.
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true

*** 一般只需要配置spring.mail.host属性即可。

(2)文本邮件

@Service
public class MailService {
 
    @Autowired
    private JavaMailSender mailSender;
 
    public void sendMail(String from, String to, String subject, String msg) {  
        SimpleMailMessage message = new SimpleMailMessage();
        message.setFrom(from);
        message.setTo(to);
        message.setSubject(subject);
        message.setText(msg);
        mailSender.send(message);
    }
 
}


(3)HTML邮件
引用
message.setText("<html><h1>HTML EMAIL</h1></html>", true);


(4)带附件邮件
引用
File attachmentFile = new File("d://test.txt");
FileSystemResource file = new FileSystemResource(attachmentFile);
messageHelper.addAttachment("test.txt", file);


设置特殊编码
引用
File attachmentFile = new File("d://test.csv");
String csv = FileUtils.readFileToString(attachmentFile, "GBK");
javax.activation.DataSource dataSource = new ByteArrayDataSource(csv, "text/csv; charset=GBK");
messageHelper.addAttachment("test.csv", dataSource);


(5)Template模板

无论thymeleaf或freemarker都可以。(使用FreeMarker居多)

@Service
public class MailService {
 
    @Autowired
    private JavaMailSender mailSender;
 
    @Autowired
    private TemplateEngine thymeleafTemplateEngine;

    @Autowired
    private Configuration freemarkerConfiguration;
  
    public void prepareAndSend(SimpleMailMessage msg, Map<String, Object> tplVariables) {
        MimeMessagePreparator preparator = new MimeMessagePreparator() {
            public void prepare(MimeMessage mimeMessage) throws Exception {
               MimeMessageHelper message = new MimeMessageHelper(mimeMessage);
               message.setTo(msg.getTo());
               message.setFrom(msg.getFrom());
               message.setSubject(msg.getSubject());

               String body = buildThymeleaf(tplVariables);
               message.setText(body, true);
            }
        };
        try {
            mailSender.send(preparator);
        } catch (MailException e) {
            // ...
        }
    }
 
    public String buildThymeleaf(String templateName, Map<String, Object> model) {
        Context context = new Context();
        context.setVariables(model);
        return templateEngine.process(templateName, context);
    }
 
    public String buildFreeMarker(String templateName, Map<String, Object> model) {
        Template tpl = freemarkerConfiguration.getTemplate(templateName);
        return FreeMarkerTemplateUtils.processTemplateIntoString(tpl, model);
    }
 
}

模板文件
src/main/resources/templates/email
引用
template_name.html

template_name.tpl


(6)国际化对应
传入locale
public String buildThymeleaf(String templateName, Map<String, Object> model, Locale locale) {
    Context context = new Context(locale);
    context.setVariables(model);
    return templateEngine.process(templateName, context);
}
 
public String buildFreeMarker(String templateName, Map<String, Object> model, Locale locale) {
    Template tpl = freemarkerConfiguration.getTemplate(templateName, locale);
    return FreeMarkerTemplateUtils.processTemplateIntoString(tpl, model);
}

模板文件
src/main/resources/templates/email
引用
template_name.html
template_name_zh.html
template_name_ja.html

template_name.tpl
template_name_zh.tpl
template_name_ja.tpl


(7)异步发送邮件

开启异步支持@EnableAsync
@EnableAsync // 追加
@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}


设置@Async
@Async
public void sendMail(String from, String to, String subject, String msg) {  
    // ...
}


(8)测试
FakeSMTP https://github.com/Nilhcem/FakeSMTP
smtp4dev https://github.com/rnwood/smtp4dev
Papercut https://github.com/changemakerstudios/papercut
GreenMail https://github.com/greenmail-mail-test/greenmail

代码示例

@Service
public class MailService {
 
    @Autowired
    private JavaMailSender mailSender;
 
    @Autowired
    private TemplateEngine thymeleafTemplateEngine;

    @Autowired
    private Configuration freemarkerConfiguration;

    public void sendTextMail(String from, String to, String subject, String text) {
        return sendMail(from, to, subject, text, false);
    }
 
    public void sendHtmlMail(String from, String to, String subject, String htmlBody) {
        return sendMail(from, to, subject, htmlBody, true);
    }

    public void sendMail(String from, String to, String subject, String msg, Boolean isHtml) {  
        SimpleMailMessage message = new SimpleMailMessage();
        message.setFrom(from);
        message.setTo(to);
        message.setSubject(subject);
        message.setText(msg, isHtml);
        mailSender.send(message);
    }
  
    public void prepareAndSend(SimpleMailMessage msg, Map<String, Object> tplVariables) {
        MimeMessagePreparator preparator = new MimeMessagePreparator() {
            public void prepare(MimeMessage mimeMessage) throws Exception {
               MimeMessageHelper message = new MimeMessageHelper(mimeMessage);
               message.setTo(msg.getTo());
               message.setFrom(msg.getFrom());
               message.setSubject(msg.getSubject());

               String body = buildThymeleaf(tplVariables); // ...
               message.setText(body, true);
            }
        };
        try {
            mailSender.send(preparator);
        } catch (MailException e) {
            // ...
        }
    }
 
    public String buildThymeleaf(String templateName, Map<String, Object> model) {
        Context context = new Context();
        context.setVariables(model);
        return templateEngine.process(templateName, context);
    }

    public String buildThymeleaf(String templateName, Map<String, Object> model, Locale locale) {
        Context context = new Context(locale);
        context.setVariables(model);
        return templateEngine.process(templateName, context);
    }
 
    public String buildFreeMarker(String templateName, Map<String, Object> model) {
        Template tpl = freemarkerConfiguration.getTemplate(templateName);
        return FreeMarkerTemplateUtils.processTemplateIntoString(tpl, model);
    }
 
    public String buildFreeMarker(String templateName, Map<String, Object> model, Locale locale) {
        Template tpl = freemarkerConfiguration.getTemplate(templateName, locale);
        return FreeMarkerTemplateUtils.processTemplateIntoString(tpl, model);
    }
 
}
分享到:
评论

相关推荐

    Spring Boot 入门 - 基础篇(11)- 数据源配置

    在本篇“Spring Boot入门 - 基础篇(11)- 数据源配置”中,我们将探讨如何在Spring Boot项目中配置数据源,以便连接到数据库并执行相关的CRUD操作。Spring Boot以其自动化配置和简化开发流程而受到广泛欢迎,它使得...

    spring-boot-study-base.zip

    总的来说,"spring-boot-study-base.zip"是一个很好的Spring Boot入门教程,它涵盖了从基础到实践的关键知识点。通过学习和实践,你可以快速掌握Spring Boot的精髓,从而在实际开发中提高效率,构建出更加健壮和灵活...

    dbApi-spring-boot-starter-demo:dbApi-spring-boot-starter案例代码

    本篇将深入探讨dbApi-spring-boot-starter的使用,结合提供的"dbApi-spring-boot-starter-demo"案例代码,帮助开发者理解和实践这一工具。 一、dbApi-spring-boot-starter简介 dbApi-spring-boot-starter的核心...

    spring boot入门的第一个项目

    本篇文章将深入探讨Spring Boot入门项目的构建过程,以及它如何与微服务和分布式系统相结合。 **1. Spring Boot基础知识** Spring Boot 的核心理念是“约定优于配置”。它通过内置的Tomcat服务器、自动配置的Spring...

    spring-boot-study-master.zip

    本篇将基于"spring-boot-study-master.zip"这一压缩包,深入探讨Spring Boot的核心概念及实战应用,包括Druid、Ehcache、JWT、Mybatis、Generator、Quartz、Scheduling、Shiro以及Upload等模块,旨在帮助初学者从零...

    Spring boot 入门实例

    ### 二、Spring Boot入门实例步骤 #### 1. 创建项目 首先,我们需要一个支持Spring Boot的IDE,如IntelliJ IDEA。然后,通过IDE的新建项目向导,选择Spring Initializr来创建一个新的Spring Boot项目。在这个向导...

    spring boot入门篇demo+ppt

    在"spring boot入门篇demo+ppt"中,我们可以期待学习以下核心知识点: 1. **Spring Boot基础知识**:了解Spring Boot的基本概念,包括其设计目标、主要特性以及与其他Spring框架的关系。 2. **起步依赖(Starter)...

    Spring Boot 笔记1

    在本篇Spring Boot笔记中,我们将探讨Spring Boot的核心特性、如何创建一个简单的Spring Boot应用以及相关的Maven配置。Spring Boot是Spring框架的一个扩展,旨在简化Spring应用的初始搭建以及开发过程,提供了一种...

    spring boot入门ppt和代码

    接下来,我们来看 `spring boot入门篇.pptx`,这个PPT很可能是对Spring Boot基础知识的详细讲解,可能包括以下内容: 1. **Spring Boot简介**:介绍Spring Boot的诞生背景、目标以及主要特点。 2. **环境准备**:...

    Spring boot(一): 入门篇.rar_springboot

    通过阅读 "Spring boot(一): 入门篇.pdf" 和 "Spring boot(二):web综合开发.pdf",你可以深入了解 Spring Boot 的基本概念、快速上手指南以及如何进行 Web 应用的综合开发。这些资料将引导你从初识 Spring Boot 到...

    01-SpringBoot基础篇

    以上是 Spring Boot 基础篇的知识点,包括 Spring Boot 简介、快速上手 Spring Boot、Spring Boot 入门案例、parent starter 引导类、内嵌 Tomcat 基础配置、配置属性配置、yaml 文件语法规则、yaml 数据读取、整合...

    Spring Boot官方文档pdf

    - **Starters**: Spring Boot 提供了一系列的 Starter POMs,用于快速搭建项目所需的基础结构。 - **代码结构**: - **默认包**: 建议使用默认包还是自定义包结构。 - **主应用类定位**: 主类的位置对自动配置和...

    Spring Boot核心技术-笔记

    本篇笔记将介绍Spring Boot的核心概念、微服务架构、环境准备、入门案例以及相关开发工具的配置方法。 1. Spring Boot简介 Spring Boot是由Pivotal团队提供的开源框架,它使用“约定优于配置”的原则,旨在简化...

    spring boot搭建(二)

    在上一部分中,我们可能已经介绍了Spring Boot的基础知识和快速入门。在此阶段,我们将更进一步,通过代码示例深入了解Spring Boot的核心特性以及如何集成常用的数据库连接池Druid和SQL监控工具P6Spy。 首先,...

    [E文]Spring Boot 2 Recipes

    - **基础篇**:介绍 Spring Boot 的基本概念、安装和配置等基础知识。 - **进阶篇**:探讨如何利用 Spring Boot 构建复杂的应用程序,包括安全性和性能优化等方面。 - **实践篇**:提供一系列实战案例,涵盖微服务...

    1、Spring Boot干货系列:(一)优雅的入门篇.docx

    为了更好地理解和掌握 Spring Boot,本文将围绕其入门篇进行详细介绍。 #### 二、Spring Boot 的核心价值 1. **自动配置**:Spring Boot 提供了一系列的自动配置选项,这意味着开发者无需编写大量的配置代码,框架...

    springBoot笔记二-来自于百度文库1

    在本篇【springBoot笔记二-来自于百度文库1】中,主要讲解了Spring Boot的基础概念、核心特性以及如何创建一个简单的Spring Boot项目。以下是详细的知识点解析: 1. **Spring Boot简介**: - Spring Boot是Spring...

    springboot基础篇视频资料1-20

    "基础篇-03-SpringBoot入门案例(Idea联网版).mp4"和"基础篇-06-SpringBoot入门案例(手工制作版).mp4"通过实例演示了如何在IntelliJ IDEA中创建和配置Spring Boot项目,讲解了Spring Initializr的使用,以及如何...

    博客:“Spring Boot / Spring MVC 入门实践 (三) : 入门项目介绍与用户注册登录的实现”的源码

    在本篇博客“Spring Boot / Spring MVC 入门实践(三):入门项目介绍与用户注册登录的实现”中,我们将深入探讨如何使用Spring Boot和Spring MVC构建一个基础的Web应用,涵盖用户注册和登录的功能。这个源码将提供...

    springCloud入门基本代码(基础篇)

    在本压缩包“SpringCloud入门基本代码(基础篇)”中,我们将会探索Spring Cloud的基础概念和实践。Spring Cloud是一个微服务开发工具集,它为开发者提供了在分布式系统(如配置管理、服务发现、断路器、智能路由、...

Global site tag (gtag.js) - Google Analytics