溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Spring Boot發(fā)送郵件的示例分析

發(fā)布時(shí)間:2021-07-08 13:43:32 來源:億速云 閱讀:135 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)Spring Boot發(fā)送郵件的示例分析,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

Spring框架使用JavaMailSender接口為發(fā)送郵件提供了一個(gè)簡單的抽象,并且Spring Boot也為它提供了自動(dòng)配置和一個(gè)starter模塊。

如果spring.mail.host和相關(guān)的庫(通過spring-boot-starter-mail定義)都存在,一個(gè)默認(rèn)的JavaMailSender將被創(chuàng)建。該sender可以通過spring.mail命名空間下的配置項(xiàng)進(jìn)一步自定義,下面本站素文宅博客具體講述一下Spring Boot如何實(shí)現(xiàn)發(fā)送郵件。

引入spring-boot-starter-mail依賴,在pom.xml配置文件中增加如下內(nèi)容(基于之前章節(jié)“Spring Boot 構(gòu)建框架”中的pom.xml文件):

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

應(yīng)用發(fā)送郵件案例

在application.properties配置文件中加入如下配置(注意替換自己的用戶名和密碼):

spring.mail.host=smtp.qq.com 
spring.mail.username=用戶名 //發(fā)送方的郵箱
spring.mail.password=密碼 //對(duì)于qq郵箱而言 密碼指的就是發(fā)送方的授權(quán)碼
spring.mail.properties.mail.smtp.auth=true 
spring.mail.properties.mail.smtp.starttls.enable=true 
spring.mail.properties.mail.smtp.starttls.required=true

郵件service服務(wù)代碼,具體如下:

@Service 
public class MailService { 
 private final Logger logger = LoggerFactory.getLogger(this.getClass()); 
  
 @Autowired 
 private JavaMailSender sender; 
  
 @Value("${spring.mail.username}") 
 private String from; 
  
 /** 
  * 發(fā)送純文本的簡單郵件 
  * @param to 
  * @param subject 
  * @param content 
  */ 
 public void sendSimpleMail(String to, String subject, String content){ 
  SimpleMailMessage message = new SimpleMailMessage(); 
  message.setFrom(from); 
  message.setTo(to); 
  message.setSubject(subject); 
  message.setText(content); 
 
  try { 
   sender.send(message); 
   logger.info("簡單郵件已經(jīng)發(fā)送。"); 
  } catch (Exception e) { 
   logger.error("發(fā)送簡單郵件時(shí)發(fā)生異常!", e); 
  } 
 } 
  
 /** 
  * 發(fā)送html格式的郵件 
  * @param to 
  * @param subject 
  * @param content 
  */ 
 public void sendHtmlMail(String to, String subject, String content){ 
  MimeMessage message = sender.createMimeMessage(); 
 
  try { 
   //true表示需要?jiǎng)?chuàng)建一個(gè)multipart message 
   MimeMessageHelper helper = new MimeMessageHelper(message, true); 
   helper.setFrom(from); 
   helper.setTo(to); 
   helper.setSubject(subject); 
   helper.setText(content, true); 
 
   sender.send(message); 
   logger.info("html郵件已經(jīng)發(fā)送。"); 
  } catch (MessagingException e) { 
   logger.error("發(fā)送html郵件時(shí)發(fā)生異常!", e); 
  } 
 } 
  
 /** 
  * 發(fā)送帶附件的郵件 
  * @param to 
  * @param subject 
  * @param content 
  * @param filePath 
  */ 
 public void sendAttachmentsMail(String to, String subject, String content, String filePath){ 
  MimeMessage message = sender.createMimeMessage(); 
 
  try { 
   //true表示需要?jiǎng)?chuàng)建一個(gè)multipart message 
   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); 
    
   sender.send(message); 
   logger.info("帶附件的郵件已經(jīng)發(fā)送。"); 
  } catch (MessagingException e) { 
   logger.error("發(fā)送帶附件的郵件時(shí)發(fā)生異常!", e); 
  } 
 } 
  
 /** 
  * 發(fā)送嵌入靜態(tài)資源(一般是圖片)的郵件 
  * @param to 
  * @param subject 
  * @param content 郵件內(nèi)容,需要包括一個(gè)靜態(tài)資源的id,比如:<img src=\"cid:rscId01\" > 
  * @param rscPath 靜態(tài)資源路徑和文件名 
  * @param rscId 靜態(tài)資源id 
  */ 
 public void sendInlineResourceMail(String to, String subject, String content, String rscPath, String rscId){ 
  MimeMessage message = sender.createMimeMessage(); 
 
  try { 
   //true表示需要?jiǎng)?chuàng)建一個(gè)multipart message 
   MimeMessageHelper helper = new MimeMessageHelper(message, true); 
   helper.setFrom(from); 
   helper.setTo(to); 
   helper.setSubject(subject); 
   helper.setText(content, true); 
 
   FileSystemResource res = new FileSystemResource(new File(rscPath)); 
   helper.addInline(rscId, res); 
    
   sender.send(message); 
   logger.info("嵌入靜態(tài)資源的郵件已經(jīng)發(fā)送。"); 
  } catch (MessagingException e) { 
   logger.error("發(fā)送嵌入靜態(tài)資源的郵件時(shí)發(fā)生異常!", e); 
  } 
 } 
}

簡單測試代碼如下:

public class MailTests extends BasicUtClass{ 
 @Autowired 
 private MailService mailService; 
  
 private String to = "xujijun@mail.cn"; 
  
 @Test 
 public void sendSimpleMail() { 
  mailService.sendSimpleMail(to, "主題:簡單郵件", "測試郵件內(nèi)容"); 
 } 
 
}

關(guān)于“Spring Boot發(fā)送郵件的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI