真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Springboot如何實(shí)現(xiàn)郵件任務(wù)

這篇文章給大家分享的是有關(guān)Springboot如何實(shí)現(xiàn)郵件任務(wù)的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

遷西ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為成都創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18980820575(備注:SSL證書合作)期待與您的合作!

郵件任務(wù)

pom.xml

        org.springframework.boot
       spring-boot-starter-mail
       test
     

配置文件

spring: 
 mail:
  username: ***********
  password: *********  (這是qq郵箱的授權(quán)碼)
  host: smtp.qq.com
spring.mail.properties.mail.smtp.ssl.enable=true

測試類

@Autowired(required = false)
  JavaMailSenderImpl mailSender;

  @Test
  public void contextLoads() {
    SimpleMailMessage message = new SimpleMailMessage();
    //郵件設(shè)置
    message.setSubject("通知-今晚開會");
    message.setText("今晚7:30開會");

    message.setTo("**************");
    message.setFrom("**************");

    mailSender.send(message);
  }

  @Test
  public void test02() throws Exception{
    //1、創(chuàng)建一個(gè)復(fù)雜的消息郵件
    MimeMessage mimeMessage = mailSender.createMimeMessage();
    MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true);

    //郵件設(shè)置
    helper.setSubject("測試");
    helper.setText("今天 7:30 開會",true);

    helper.setTo("***************");
    helper.setFrom("**************");

    //上傳文件
    helper.addAttachment("nginx.md",new File("C:\\Users\\asus\\Desktop\\nginx.md"));

    mailSender.send(mimeMessage);

  }

結(jié)果:

Springboot如何實(shí)現(xiàn)郵件任務(wù)

感謝各位的閱讀!關(guān)于“Springboot如何實(shí)現(xiàn)郵件任務(wù)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!


當(dāng)前標(biāo)題:Springboot如何實(shí)現(xiàn)郵件任務(wù)
標(biāo)題鏈接:http://weahome.cn/article/gececi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部