Spring Boot (十):郵件服務

Spring Boot 仍然在狂速發展,才幾個多月沒有關注,如今看官網已經到 2.1.0.RELEASE 版本了。準備慢慢在寫寫 Spring Boot 相關的文章,本篇文章使用 Spring Boot 最新版本 2.1.0 進行開發。html

發送郵件應該是網站的必備功能之一,什麼註冊驗證,忘記密碼或者是給用戶發送營銷信息。最先期的時候咱們會使用 JavaMail 相關 api 來寫發送郵件的相關代碼,後來 Spring 推出了 JavaMailSender 更加簡化了郵件發送的過程,在以後 Spring Boot 對此進行了封裝就有了如今的 spring-boot-starter-mail ,本章文章的介紹主要來自於此包。java

簡單使用

一、pom 包配置

pom 包裏面添加 spring-boot-starter-mail 包引用git

  1. <dependencies>github

  2. <dependency>面試

  3. <groupId>org.springframework.boot</groupId>spring

  4. <artifactId>spring-boot-starter-mail</artifactId>api

  5. </dependency>服務器

  6. </dependencies>網絡

二、在 application.properties 中添加郵箱配置

  1. spring.mail.host=smtp.qiye.163.com //郵箱服務器地址併發

  2. spring.mail.username=xxx@oo.com //用戶名

  3. spring.mail.password=xxyyooo //密碼

  4. spring.mail.default-encoding=UTF-8

  5.  

  6. mail.fromMail.addr=xxx@oo.com //以誰來發送郵件

三、編寫 mailService,這裏只提出實現類。

  1. @Component

  2. public class MailServiceImpl implements MailService{

  3.  

  4. private final Logger logger = LoggerFactory.getLogger(this.getClass());

  5.  

  6. @Autowired

  7. private JavaMailSender mailSender;

  8.  

  9. @Value("${mail.fromMail.addr}")

  10. private String from;

  11.  

  12. @Override

  13. public void sendSimpleMail(String to, String subject, String content) {

  14. SimpleMailMessage message = new SimpleMailMessage();

  15. message.setFrom(from);

  16. message.setTo(to);

  17. message.setSubject(subject);

  18. message.setText(content);

  19.  

  20. try {

  21. mailSender.send(message);

  22. logger.info("簡單郵件已經發送。");

  23. } catch (Exception e) {

  24. logger.error("發送簡單郵件時發生異常!", e);

  25. }

  26.  

  27. }

  28. }

四、編寫 test 類進行測試

  1. @RunWith(SpringRunner.class)

  2. @SpringBootTest

  3. public class MailServiceTest {

  4.  

  5. @Autowired

  6. private MailService MailService;

  7.  

  8. @Test

  9. public void testSimpleMail() throws Exception {

  10. MailService.sendSimpleMail("ityouknow@126.com","test simple mail"," hello this is simple mail");

  11. }

  12. }

至此一個簡單的文本發送就完成了。

加點料

可是在正常使用的過程當中,咱們一般在郵件中加入圖片或者附件來豐富郵件的內容,下面講介紹如何使用 Spring Boot 來發送豐富的郵件。

發送 html 格式郵件

其它都不變在 MailService 添加 sendHtmlMail 方法.

  1. public void sendHtmlMail(String to, String subject, String content) {

  2. MimeMessage message = mailSender.createMimeMessage();

  3.  

  4. try {

  5. //true表示須要建立一個multipart message

  6. MimeMessageHelper helper = new MimeMessageHelper(message, true);

  7. helper.setFrom(from);

  8. helper.setTo(to);

  9. helper.setSubject(subject);

  10. helper.setText(content, true);

  11.  

  12. mailSender.send(message);

  13. logger.info("html郵件發送成功");

  14. } catch (MessagingException e) {

  15. logger.error("發送html郵件時發生異常!", e);

  16. }

  17. }

在測試類中構建 html 內容,測試發送

  1. @Test

  2. public void testHtmlMail() throws Exception {

  3. String content="<html>\n" +

  4. "<body>\n" +

  5. " <h3>hello world ! 這是一封Html郵件!</h3>\n" +

  6. "</body>\n" +

  7. "</html>";

  8. MailService.sendHtmlMail("ityouknow@126.com","test simple mail",content);

  9. }

發送帶附件的郵件

在 MailService 添加 sendAttachmentsMail 方法.

  1. public void sendAttachmentsMail(String to, String subject, String content, String filePath){

  2. MimeMessage message = mailSender.createMimeMessage();

  3.  

  4. try {

  5. MimeMessageHelper helper = new MimeMessageHelper(message, true);

  6. helper.setFrom(from);

  7. helper.setTo(to);

  8. helper.setSubject(subject);

  9. helper.setText(content, true);

  10.  

  11. FileSystemResource file = new FileSystemResource(new File(filePath));

  12. String fileName = filePath.substring(filePath.lastIndexOf(File.separator));

  13. helper.addAttachment(fileName, file);

  14.  

  15. mailSender.send(message);

  16. logger.info("帶附件的郵件已經發送。");

  17. } catch (MessagingException e) {

  18. logger.error("發送帶附件的郵件時發生異常!", e);

  19. }

  20. }

添加多個附件可使用多條 helper.addAttachment(fileName,file)

在測試類中添加測試方法

  1. @Test

  2. public void sendAttachmentsMail() {

  3. String filePath="e:\\tmp\\application.log";

  4. mailService.sendAttachmentsMail("ityouknow@126.com", "主題:帶附件的郵件", "有附件,請查收!", filePath);

  5. }

發送帶靜態資源的郵件

郵件中的靜態資源通常就是指圖片,在 MailService 添加 sendAttachmentsMail 方法.

  1. public void sendInlineResourceMail(String to, String subject, String content, String rscPath, String rscId){

  2. MimeMessage message = mailSender.createMimeMessage();

  3.  

  4. try {

  5. MimeMessageHelper helper = new MimeMessageHelper(message, true);

  6. helper.setFrom(from);

  7. helper.setTo(to);

  8. helper.setSubject(subject);

  9. helper.setText(content, true);

  10.  

  11. FileSystemResource res = new FileSystemResource(new File(rscPath));

  12. helper.addInline(rscId, res);

  13.  

  14. mailSender.send(message);

  15. logger.info("嵌入靜態資源的郵件已經發送。");

  16. } catch (MessagingException e) {

  17. logger.error("發送嵌入靜態資源的郵件時發生異常!", e);

  18. }

  19. }

在測試類中添加測試方法

  1. @Test

  2. public void sendInlineResourceMail() {

  3. String rscId = "neo006";

  4. String content="<html><body>這是有圖片的郵件:<img src=\'cid:" + rscId + "\' ></body></html>";

  5. String imgPath = "C:\\Users\\summer\\Pictures\\favicon.png";

  6.  

  7. mailService.sendInlineResourceMail("ityouknow@126.com", "主題:這是有圖片的郵件", content, imgPath, rscId);

  8. }

添加多個圖片可使用多條 <imgsrc='cid:" + rscId + "'>helper.addInline(rscId,res) 來實現

到此全部的郵件發送服務已經完成了。

郵件系統

上面發送郵件的基礎服務就這些了,可是若是咱們要作成一個郵件系統的話還須要考慮如下幾個問題:

郵件模板

咱們會常常收到這樣的郵件:

  1. 尊敬的neo用戶:

  2.  

  3. 恭喜您註冊成爲xxx網的用戶,,同時感謝您對xxx的關注與支持並歡迎您使用xx的產品與服務。

  4. ...

其中只有 neo 這個用戶名在變化,其它郵件內容均不變,若是每次發送郵件都須要手動拼接的話會不夠優雅,而且每次模板的修改都須要改動代碼的話也很不方便,所以對於這類郵件需求,都建議作成郵件模板來處理。模板的本質很簡單,就是在模板中替換變化的參數,轉換爲 html 字符串便可,這裏以 thymeleaf爲例來演示。

一、pom 中導入 thymeleaf 的包

  1. <dependency>

  2. <groupId>org.springframework.boot</groupId>

  3. <artifactId>spring-boot-starter-thymeleaf</artifactId>

  4. </dependency>

*二、在 resorces/templates 下建立 emailTemplate.html *

  1. <!DOCTYPE html>

  2. <html lang="zh" xmlns:th="http://www.thymeleaf.org">

  3. <head>

  4. <meta charset="UTF-8"/>

  5. <title>Title</title>

  6. </head>

  7. <body>

  8. 您好,這是驗證郵件,請點擊下面的連接完成驗證,<br/>

  9. <a href="#" th:href="@{ http://www.ityouknow.com/neo/{id}(id=${id}) }">激活帳號</a>

  10. </body>

  11. </html>

三、解析模板併發送

  1. @Test

  2. public void sendTemplateMail() {

  3. //建立郵件正文

  4. Context context = new Context();

  5. context.setVariable("id", "006");

  6. String emailContent = templateEngine.process("emailTemplate", context);

  7.  

  8. mailService.sendHtmlMail("ityouknow@126.com","主題:這是模板郵件",emailContent);

  9. }

發送失敗

由於各類緣由,總會有郵件發送失敗的狀況,好比:郵件發送過於頻繁、網絡異常等。在出現這種狀況的時候,咱們通常會考慮從新重試發送郵件,會分爲如下幾個步驟來實現:

  • 一、接收到發送郵件請求,首先記錄請求而且入庫。

  • 二、調用郵件發送接口發送郵件,而且將發送結果記錄入庫。

  • 三、啓動定時系統掃描時間段內,未發送成功而且重試次數小於3次的郵件,進行再次發送

異步發送

不少時候郵件發送並非咱們主業務必須關注的結果,好比通知類、提醒類的業務能夠容許延時或者失敗。這個時候能夠採用異步的方式來發送郵件,加快主交易執行速度,在實際項目中能夠採用MQ發送郵件相關參數,監聽到消息隊列以後啓動發送郵件。

能夠參考前期文章:Spring Boot(八):RabbitMQ 詳解 來實現。

文章內容已經升級到 Spring Boot 2.x

示例代碼-https://github.com/ityouknow/spring-boot-examples/tree/master/spring-boot-mail


精彩回顧:

面試點:Java 中 hashCode() 和 equals() 的關係

容器鏈接[Docker 系列-7]

現現在的技術浪潮中,咱們到底該作些什麼?

 

強烈推薦:

《Java 極客技術》知識星球限時優惠,如今加入只需 50 元,僅限前 1000 名,機不可失時再也不來。趁早行動吧!

https://t.zsxq.com/J6Em2nU

 

隆重介紹:

Java 極客技術公衆號,是由一羣熱愛 Java 開發的技術人組建成立,專一分享原創、高質量的 Java 文章。若是您以爲咱們的文章還不錯,請幫忙讚揚、在看、轉發支持,鼓勵咱們分享出更好的文章。

 

相關文章
相關標籤/搜索