本篇文章給大家分享的是有關(guān)SpringBoot中怎么發(fā)送郵件任務(wù),小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。
目前創(chuàng)新互聯(lián)已為超過(guò)千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、成都網(wǎng)站托管、企業(yè)網(wǎng)站設(shè)計(jì)、白云網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。
具體內(nèi)容如下
1.pom中引入spring-boot-starter-mail
2.假如 張三@qq.com 給 李四@163.com 發(fā)送郵件,張三首先要登錄自己的郵箱,所以先要配置發(fā)送者的賬號(hào)密碼,服務(wù)器地址。
注意:第三方登錄郵箱的時(shí)候,使用的不是郵箱的原本密碼,使用的是臨時(shí)授權(quán)碼。
以QQ郵箱為例子,打開(kāi)郵箱!
點(diǎn)擊賬戶
往下拉,全部開(kāi)啟,生成授權(quán)碼!
全部開(kāi)啟。點(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.在測(cè)試類中測(cè)試
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)@SpringBootTestpublic class SpringbootTaskApplicationTests { //注入郵件發(fā)送器 @Autowired JavaMailSenderImpl javaMailSender; /** * 簡(jiǎn)單郵件測(cè)試 */ @Test public void contextLoads1() { SimpleMailMessage message = new SimpleMailMessage(); message.setText("今晚7點(diǎn)鐘開(kāi)會(huì)"); message.setSubject("通知-開(kāi)會(huì)"); //發(fā)送者郵箱 message.setFrom("119848xxxx@qq.com"); //發(fā)送到哪個(gè)郵箱 message.setTo("zyb_xxx@126.com"); javaMailSender.send(message); } /** * 復(fù)雜郵件測(cè)試 */ @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)鐘開(kāi)會(huì)",true); helper.setSubject("通知-開(kāi)會(huì)"); //發(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); }}
以上就是SpringBoot中怎么發(fā)送郵件任務(wù),小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見(jiàn)到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。