91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

spring boot中怎么發送文本郵件

發布時間:2021-06-15 15:07:01 來源:億速云 閱讀:115 作者:Leah 欄目:編程語言

spring boot中怎么發送文本郵件,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

首先要去郵箱打開POP3/SMTP權限:

spring boot中怎么發送文本郵件

spring boot中怎么發送文本郵件

然后會提供個授權碼,用來發送郵件。忘記了,可以點生成授權碼再次生成。

spring boot中怎么發送文本郵件

1、引入spring boot自帶的mail依賴,這里版本用的:<spring-boot.version>1.4.3.RELEASE</spring-boot.version>

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-mail</artifactId>
  <version>${spring-boot.version}</version>
  <scope>provided</scope>
</dependency>

2、spring boot配置文件添加郵箱參數信息

spring.mail.host=smtp.qq.com
spring.mail.username=你的qq號碼@qq.com
spring.mail.password=qq郵箱開啟SMTP提供的授權碼(注意:不是你的qq郵箱密碼)#下面一般不用動
spring.mail.default-encoding=${spring.http.encoding.charset}
spring.mail.properties.mail.smtp.connectiontimeout=5000 
spring.mail.properties.mail.smtp.timeout=3000
spring.mail.properties.mail.smtp.writetimeout=5000
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
spring.mail.properties.mail.smtp.starttls.required=true

3、測試發送

@Autowired
        private JavaMailSender mailSender;
        
        @Value("${spring.mail.username}")
        private String from;


SimpleMailMessage smm = new SimpleMailMessage();
            smm.setFrom(from);
            smm.setTo("發送方郵件地址");
            smm.setSubject("springboot測試郵件");
            smm.setText("簡單文本郵件測試發送!");
            mailSender.send(smm);

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

AI

正镶白旗| 保康县| 观塘区| 长兴县| 仪征市| 浏阳市| 吉隆县| 佛坪县| 六安市| 和平区| 宁南县| 巴林左旗| 壤塘县| 竹溪县| 特克斯县| 韶山市| 勐海县| 乌拉特前旗| 垦利县| SHOW| 永兴县| 栾城县| 娄烦县| 睢宁县| 临泉县| 进贤县| 太仆寺旗| 杭锦后旗| 墨脱县| 南充市| 玛曲县| 仁布县| 吐鲁番市| 花莲县| 城固县| 班戈县| 瑞昌市| 襄垣县| 青神县| 肥乡县| 淄博市|