SpringBoot集成E-mail发送各种类型邮件的方法

发布时间:2020-06-23 14:56:19 作者:清晨
来源:亿速云 阅读:165

这篇文章将为大家详细讲解有关SpringBoot集成E-mail发送各种类型邮件的方法,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

JDK本身有自带发送邮件api,加上SpringBoot在进行封装,使得现在使用起来十分快速简洁。
话不多说,参考纯洁的微笑博客,更改jar版本为2.0.4 开干,基本没什么坑。
就是配置邮箱账号密码是,如果是qq邮箱,需要开启PO30和STMP服务,并且获取临时授权码。

开启服务链接:

https://mail.qq.com/cgi-bin/frame_html?sid=a5ZSbreeNm9pHyl1&r=a83225170e94773c650a460c10f7a05c 

SpringBoot集成E-mail发送各种类型邮件的方法

与Springboot集成

导入jar包

compile group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '2.0.4.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-thymeleaf:2.0.4.RELEASE'

配置邮箱

#邮箱服务器地址,各大运营商不同
spring.mail.host=smtp.qq.com
#用户名
spring.mail.username=9118542413@qq.com
#密码,如果是qq的,要申请临时授权码
spring.mail.password=faw124awfawfawg
spring.mail.default-encoding=UTF-8
#以谁来发送邮件
mail.fromMail.addr=9118542413@qq.com

发送各种类型的邮件

@Service
@Slf4j
public class MailServiceImpl implements MailService {
 @Autowired
 private JavaMailSender mailSender;
 /**
 * The Template engine.
 */
 @Autowired
 TemplateEngine templateEngine;
 @Value("${mail.fromMail.addr}")
 private String from;

 @Override
 public void sendSimpleMail(String to, String subject, String content) {
 SimpleMailMessage message = new SimpleMailMessage();
 message.setFrom(from);
 message.setTo(to);
 message.setSubject(subject);
 message.setText(content);

 try {
  mailSender.send(message);
  log.info("简单邮件已经发送。");
 } catch (Exception e) {
  log.error("发送简单邮件时发生异常!", e);
 }
 }

 @Override
 public void sendHtmlMail(String to, String subject, String content) {
 MimeMessage message = mailSender.createMimeMessage();

 try {
  //true表示需要创建一个multipart message
  MimeMessageHelper helper = new MimeMessageHelper(message, true);
  helper.setFrom(from);
  helper.setTo(to);
  helper.setSubject(subject);
  helper.setText(content, true);
  mailSender.send(message);
  log.info("html邮件发送成功");
 } catch (MessagingException e) {
  log.error("发送html邮件时发生异常!", e);
 }
 }

 @Override
 public void sendAttachmentsMail(String to, String subject, String content, String filePath) {
 MimeMessage message = mailSender.createMimeMessage();
 try {
  MimeMessageHelper helper = new MimeMessageHelper(message, true);
  helper.setFrom(from);
  helper.setTo(to);
  helper.setSubject(subject);
  helper.setText(content, true);
  FileSystemResource file = new FileSystemResource(new File(filePath));
  String fileName = filePath.substring(filePath.lastIndexOf(File.separator) + 1);
  helper.addAttachment(fileName, file);

  mailSender.send(message);
  log.info("带附件的邮件已经发送。");
 } catch (MessagingException e) {
  log.error("发送带附件的邮件时发生异常!", e);
 }
 }

 @Override
 public void sendInlineResourceMail(String to, String subject, String content, String rscPath, String rscId) {
 MimeMessage message = mailSender.createMimeMessage();
 try {
  MimeMessageHelper helper = new MimeMessageHelper(message, true);
  helper.setFrom(from);
  helper.setTo(to);
  helper.setSubject(subject);
  helper.setText(content, true);

  FileSystemResource res = new FileSystemResource(new File(rscPath));
  helper.addInline(rscId, res);

  mailSender.send(message);
  log.info("嵌入静态资源的邮件已经发送。");
 } catch (MessagingException e) {
  log.error("发送嵌入静态资源的邮件时发生异常!", e);
 }
 }

 @Override
 public void sendTemplateMail(String to, String subject, String template, Context context) {
 String emailContent = templateEngine.process(template, context);
 sendHtmlMail("15017263512@163.com", "主题:这是模板邮件", emailContent);
 }
}

测试类:

@RunWith(SpringRunner.class)
@SpringBootTest
public class EmailServiceTest {
 @Autowired
 MailService mailService;

 @Test
 public void sendSimpleMailTest() {
 mailService.sendSimpleMail("15017263512@163.com","test simple mail"," hello this is simple mail");
 }

 @Test
 public void sendHtmlMailTest(){
 String content="<html>\n" +
  "<body>\n" +
  " <h4>hello world ! 这是一封Html邮件!</h4>\n" +
  "</body>\n" +
  "</html>";
 mailService.sendHtmlMail("15017263512@163.com","test html mail",content);
 }

 @Test
 public void sendAttachmentsMail(){
 String filePath="E:\\var\\log\\elkTest\\error\\2018-11-30.log";
 mailService.sendAttachmentsMail("15017263512@163.com", "主题:带附件的邮件", "有附件,请查收!", filePath);
 }

 @Test
 public void sendInlineResourceMail() {
 String rscId = "neo006";
 String content="<html><body>这是有图片的邮件:<img src=\'cid:" + rscId + "\' ></body></html>";
 String imgPath = "C:\\Users\\Admin\\Pictures\\Camera Roll\\9499189867_1476052069.jpg";

 mailService.sendInlineResourceMail("15017263512@163.com", "主题:这是有图片的邮件", content, imgPath, rscId);
 }

 @Test
 public void sendTemplateMail() {
 //创建邮件正文
 Context context = new Context();
 context.setVariable("id", "006");
 mailService.sendTemplateMail("15017263512@163.com","主题:这是模板邮件",
  "emailTemplate",context);
 }
}

关于SpringBoot集成E-mail发送各种类型邮件的方法就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

推荐阅读:
  1. SpringBoot 2.0 集成 JavaMail ,实现异步发送邮件
  2. 基于SpringBoot如何实现定时发送邮件

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

springboot e-mail bo

上一篇:textField去掉默认首字母大写

下一篇:migrating from cocos2d to cocos2dx

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》