中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

springboot怎么使用QQ郵箱發送郵件

發布時間:2022-03-03 14:12:11 來源:億速云 閱讀:213 作者:小新 欄目:開發技術

小編給大家分享一下springboot怎么使用QQ郵箱發送郵件,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

一、QQ郵箱打開POP3/SMTP服務

springboot怎么使用QQ郵箱發送郵件
springboot怎么使用QQ郵箱發送郵件
springboot怎么使用QQ郵箱發送郵件

上面的服務開啟后,會得到一串授權密碼在springboot配置中需要用到

二、springboot配置

IDE目錄

springboot怎么使用QQ郵箱發送郵件

1.在pom.xml添加spring-boot-starter-mail起步依賴

 <!-- springboot開發mail項目的起步依賴-->
 <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-mail</artifactId>
 </dependency>

2.在application.properties中配置mail屬性

#靜態資源映射,localhost:8080/ == /resources
spring.resources.static-locations=classpath:META-INF/resources/,classpath:static/,classpath:templates/

#https://blog.csdn.net/jawhiow/article/details/82625842
#如果原先訪問首頁的地址是:http://localhost:8888/index.html   那么在你配置這個配置后,http://localhost:8888/default/index.html
spring.mvc.static-path-pattern=/*

# 設置郵箱主機
spring.mail.host=smtp.qq.com
# 設置用戶名
spring.mail.username=xxxxxx@qq.com
# 設置密碼,該處的密碼是QQ郵箱開啟SMTP的授權碼而非QQ密碼
spring.mail.password=xxxxxx
# 設置是否需要認證,如果為true,那么用戶名和密碼就必須的,
# 如果設置false,可以不設置用戶名和密碼,當然也得看你的對接的平臺是否支持無密碼進行訪問的。
spring.mail.properties.mail.smtp.auth=true
# STARTTLS[1]  是對純文本通信協議的擴展。它提供一種方式將純文本連接升級為加密連接(TLS或SSL),而不是另外使用一個端口作加密通信。
spring.mail.properties.mail.smtp.starttls.enable=true
spring.mail.properties.mail.smtp.starttls.required=true

spring.mail.properties.mail.smtp.ssl.enable=true
spring.mail.port=465

3.編寫controller文件

@Controller
public class EmailController {
    @Autowired
    private JavaMailSender javaMailSender;

    @RequestMapping("/")
    public void index(HttpServletRequest request, HttpServletResponse response) throws IOException {
        System.out.println("index.html");
        response.sendRedirect("/index.html");
    }

    @ResponseBody
    @RequestMapping("/emailSend")
    public String emailSend(@RequestParam(value = "email") String eamil){
        System.out.println(eamil);
        String content = "1234";
        try{
            SimpleMailMessage message = new SimpleMailMessage();
            message.setFrom("xxxxxx@qq.com");
            message.setTo(eamil);
            message.setSubject("主題:主題內容");
            message.setText(content);
            //發送郵件
            javaMailSender.send(message);
            System.out.println(eamil+"發送成功");
        }catch (Exception e){
            return "fail";
        }
        return "success";
    }
}

4.編寫網頁頁面

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>郵件</title>
</head>
<body>
    <form action="/emailSend">
        郵箱:<input type="text" name="email" value="xxxxxx@qq.com">
        <input type="submit">
    </form>
</body>
</html>

5.發送成功

springboot怎么使用QQ郵箱發送郵件
springboot怎么使用QQ郵箱發送郵件

以上是“springboot怎么使用QQ郵箱發送郵件”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

卢氏县| 鄄城县| 胶南市| 杨浦区| 平果县| 扶风县| 敦煌市| 任丘市| 汉中市| 勐海县| 烟台市| 五台县| 镇安县| 吉首市| 怀远县| 斗六市| 大方县| 景德镇市| 哈巴河县| 义马市| 宝鸡市| 陵川县| 闵行区| 雅江县| 平顺县| 连江县| 高青县| 安仁县| 韶山市| 贺兰县| 宁武县| 共和县| 西乡县| 铜梁县| 永城市| 东山县| 福安市| 榆树市| 台中县| 全州县| 绥芬河市|