时间:2021-05-20
1.maven引入依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId></dependency>2.application.properties配置发送邮箱
3.测试
import cn.kgc.elastic.vo.Book;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.JavaMailSenderImpl;import org.springframework.mail.javamail.MimeMailMessage;import org.springframework.mail.javamail.MimeMessageHelper;import org.springframework.test.context.junit4.SpringRunner;import javax.mail.MessagingException;import javax.mail.internet.MimeMessage;import java.io.File;@RunWith(SpringRunner.class)@SpringBootTestpublic class SpringBoot03ApplicationTests { //注入邮件发送器 @Autowired JavaMailSenderImpl mailSender; @Test public void sentMail(){ //发送简单的邮件 SimpleMailMessage message=new SimpleMailMessage(); //邮件设置 //标题 message.setSubject("注意"); //内容 message.setText("有内鬼,终止交易"); //发送人 message.setFrom("753029781@qq.com"); //收件人 message.setTo("jumpjiang233@gmail.com"); mailSender.send(message); } @Test public void tesr01() throws MessagingException { //复杂邮件发送 MimeMessage mimeMessage=mailSender.createMimeMessage(); //使用helper上传文件 MimeMessageHelper helper=new MimeMessageHelper(mimeMessage,true); helper.setSubject("注意"); //可以HTML样式 helper.setText("<b style='color:blue'>有内鬼,终止交易</b>",true); //上传文件,可以上传多个 helper.addAttachment("1.jpg",new File("C:\\Users\\Jump\\Pictures\\1.jpg")); helper.setFrom("753029781@qq.com"); helper.setTo("2871382340@qq.com"); mailSender.send(mimeMessage); } @Test public void contextLoads() { }}以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
这篇文章主要介绍了SpringBoot基于数据库实现定时任务过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以
最近收到了很多封邮件,都是想知道springboot整合quartz如何实现多个定时任务的,由于本人生产上并没有使用到多个定时任务,这里给个实现的思路。1、新建
刚刚看了下SpringBoot实现定时任务的文章,感觉还不错。SpringBoot使用Spring自带的Schedule来实现定时任务变得非常简单和方便。在这里
最近在做项目的时候经常会用到定时任务,由于我的项目是使用Java来开发,用的是SpringBoot框架,因此要实现这个定时任务其实并不难。后来我在想如果我要在P
这篇文章主要介绍了springboot定时任务@Scheduled实现解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋