亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用Spring Boot實現一個郵件發送功能

發布時間:2020-11-23 17:33:39 來源:億速云 閱讀:139 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關如何使用Spring Boot實現一個郵件發送功能,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

1、引入依賴

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

2、參數配置

在application.properties中配置郵件相關的參數

spring.thymeleaf.cache=false

spring.mail.host=smtp.qq.com
spring.mail.username=***@qq.com
spring.mail.password=ymwrdffauajebgde //此處的密碼時qq郵箱的授權碼
spring.mail.properties.mail.smtp.auth=true 
spring.mail.properties.mail.smtp.starttls.enable=true
spring.mail.properties.mail.smtp.stattls.required=true

3、郵件Service代碼

@Service
public class MailService {

  @Value("${spring.mail.username}")
  private String from;
  
  @Autowired
  private JavaMailSender sender;
  
  /*發送郵件的方法*/
  public void sendSimple(String to, String title, String content){
    SimpleMailMessage message = new SimpleMailMessage();
    message.setFrom(from); //發送者
    message.setTo(to); //接受者
    message.setSubject(title); //發送標題
    message.setText(content); //發送內容
    sender.send(message);
    
    System.out.println("郵件發送成功");
    
  }
}

4、編寫頁面代碼

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" 
   xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
<head>
<meta charset="UTF-8" />
<title>Insert title here</title>
</head>
<body>
  <h2 th:inlines="text">郵件發送</h2>
  <form action="sendMail" method="post">
    <p>選擇文件: <input type="text" name="title"/></p>
    <p><input type="submit" value="提交"/></p>
  </form>
</body>
</html>

5、郵件請求處理

@Controller
public class MailController {

  @Autowired
  private MailService mailService;
  
  private String to="***@qq.com";
  
  @RequestMapping("mail")
  public String mail(){
    return "/mail";
  }
  
  @RequestMapping("sendMail")
  @ResponseBody
  public String sendMail(@RequestParam("title")String title){
    System.out.println("-----title: " + title);
    mailService.sendSimple(to, title, title);
    return "success";
  }
}

6、測試

如何使用Spring Boot實現一個郵件發送功能

7、qq郵箱授權碼

如何使用Spring Boot實現一個郵件發送功能

如何使用Spring Boot實現一個郵件發送功能

以上就是如何使用Spring Boot實現一個郵件發送功能,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大安市| 四川省| 额尔古纳市| 高青县| 拉孜县| 辉县市| 招远市| 怀化市| 昭觉县| 兴安县| 闽清县| 苏尼特左旗| 舟山市| 化隆| 乌鲁木齐市| 唐山市| 阿拉尔市| 平江县| 盐池县| 招远市| 绵竹市| 格尔木市| 突泉县| 潮安县| 璧山县| 南开区| 晋州市| 杭锦旗| 陈巴尔虎旗| 辽阳县| 行唐县| 永昌县| 娄烦县| 图木舒克市| 绿春县| 清水县| 陆河县| 漯河市| 七台河市| 西盟| 株洲市|