本文實(shí)例為大家分享了SpringBoot實(shí)現(xiàn)發(fā)送郵件任務(wù)的具體代碼,供大家參考,具體內(nèi)容如下
創(chuàng)新互聯(lián)公司-云計(jì)算及IDC服務(wù)提供商,涵蓋公有云、IDC機(jī)房租用、川西大數(shù)據(jù)中心、等保安全、私有云建設(shè)等企業(yè)級互聯(lián)網(wǎng)基礎(chǔ)服務(wù),來電聯(lián)系:13518219792
1.pom中引入spring-boot-starter-mail
org.springframework.boot spring-boot-starter-mail org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-test test
2.假如 張三@qq.com 給 李四@163.com 發(fā)送郵件,張三首先要登錄自己的郵箱,所以先要配置發(fā)送者的賬號密碼,服務(wù)器地址。
注意:第三方登錄郵箱的時(shí)候,使用的不是郵箱的原本密碼,使用的是臨時(shí)授權(quán)碼。
以QQ郵箱為例子,打開郵箱!
點(diǎn)擊賬戶
往下拉,全部開啟,生成授權(quán)碼!
全部開啟。點(diǎn)擊生成授權(quán)碼!
3.配置application.properties
##發(fā)件人郵箱 spring.mail.username=119848xxxx@qq.com ##生成的授權(quán)碼 spring.mail.password=lojwzgpnrpzmifgg ##QQ的SMIP地址 spring.mail.host=smtp.qq.com ##配置安全連接 spring.mail.properties.mail.smtp.ssl.enable=true
4.在測試類中測試
package com.zyb.task; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.mail.SimpleMailMessage; import org.springframework.mail.javamail.JavaMailSender; import org.springframework.mail.javamail.JavaMailSenderImpl; import org.springframework.mail.javamail.MimeMessageHelper; import org.springframework.test.context.junit4.SpringRunner; import javax.mail.internet.MimeMessage; import java.io.File; @RunWith(SpringRunner.class) @SpringBootTest public class SpringbootTaskApplicationTests { //注入郵件發(fā)送器 @Autowired JavaMailSenderImpl javaMailSender; /** * 簡單郵件測試 */ @Test public void contextLoads1() { SimpleMailMessage message = new SimpleMailMessage(); message.setText("今晚7點(diǎn)鐘開會"); message.setSubject("通知-開會"); //發(fā)送者郵箱 message.setFrom("119848xxxx@qq.com"); //發(fā)送到哪個(gè)郵箱 message.setTo("zyb_xxx@126.com"); javaMailSender.send(message); } /** * 復(fù)雜郵件測試 */ @Test public void contextLoads2() throws Exception{ //1.創(chuàng)建一個(gè)復(fù)雜的消息郵件 MimeMessage mimeMessage = javaMailSender.createMimeMessage(); //第二個(gè)參數(shù) 是否需要上傳附件 MimeMessageHelper helper = new MimeMessageHelper(mimeMessage,true); //郵件設(shè)置 //這里可以使用html標(biāo)簽樣式 helper.setText("今晚7點(diǎn)鐘開會",true); helper.setSubject("通知-開會"); //發(fā)送者郵箱 helper.setFrom("119848xxxx@qq.com"); //發(fā)送到哪個(gè)郵箱 helper.setTo("zyb_xxx@126.com"); //上傳附件 附件名,路徑 helper.addAttachment("1.jpg",new File("C:\\Users\\Administrator\\Desktop\\img\\iphone壁紙\\1.jpg")); javaMailSender.send(mimeMessage); } }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。