首页 > 编程语言 > 详细

springboot常用功能

时间:2020-07-05 20:39:50      阅读:35      评论:0      收藏:0      [点我收藏+]

1、常用注解

 

2、邮件功能

//依赖引入
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-mail</artifactId>
</dependency>


//邮件配置:application.yml 或者 application.properties
spring.mail.host=smtp.qq.com
spring.mail.username=用户名
spring.mail.password=密码
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
spring.mail.properties.mail.smtp.starttls.required=true


@Test
public void sendAttachmentsMail() throws Exception {

    MimeMessage mimeMessage = mailSender.createMimeMessage();

    MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true);
    helper.setFrom("123456@qq.com");
    helper.setTo("888888@qq.com");
    helper.setSubject("主题:我是一封有附件的邮件");
    helper.setText("有附件的邮件");

    FileSystemResource file = new FileSystemResource(new File("weixin.jpg"));
    helper.addAttachment("附件1.jpg", file);
    helper.addAttachment("附件2.jpg", file);

    mailSender.send(mimeMessage);
}

 

springboot常用功能

原文:https://www.cnblogs.com/chenweichu/p/13251517.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!