Spring Boot实现邮件发送功能
- 更新时间:2022-06-10 16:05:38
- 编辑:古明智
本站精选了一篇Spring Boot相关的编程文章,网友贡初阳根据主题投稿了本篇教程内容,涉及到Spring、Boot、邮件相关内容,已被795网友关注,下面的电子资料对本篇知识点有更加详尽的解释。
-
《深入浅出Spring Boot 2.x》配套资源
- 大小:52.18 MB
- 发布人:寿倩美
- 下载:Spring Boot
本文实例为大家分享了Spring Boot邮件发送功能的具体代码,供大家参考,具体内容如下
1、引入依赖
<!-- mail依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency>
2、参数配置
在application.properties中配置邮件相关的参数
spring.thymeleaf.cache=false spring.mail.host=smtp.qq.com spring.mail.username=***@qq.com spring.mail.password=ymwrdffauajebgde //此处的密码时qq邮箱的授权码 spring.mail.properties.mail.smtp.auth=true spring.mail.properties.mail.smtp.starttls.enable=true spring.mail.properties.mail.smtp.stattls.required=true
3、邮件Service代码
@Service public class MailService { @Value("${spring.mail.username}") private String from; @Autowired private JavaMailSender sender; /*发送邮件的方法*/ public void sendSimple(String to, String title, String content){ SimpleMailMessage message = new SimpleMailMessage(); message.setFrom(from); //发送者 message.setTo(to); //接受者 message.setSubject(title); //发送标题 message.setText(content); //发送内容 sender.send(message); System.out.println("邮件发送成功"); } }
4、编写页面代码
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3"> <head> <meta charset="UTF-8" /> <title>Insert title here</title> </head> <body> <h1 th:inlines="text">邮件发送</h1> <form action="sendMail" method="post"> <p>选择文件: <input type="text" name="title"/></p> <p><input type="submit" value="提交"/></p> </form> </body> </html>
5、邮件请求处理
@Controller public class MailController { @Autowired private MailService mailService; private String to="***@qq.com"; @RequestMapping("mail") public String mail(){ return "/mail"; } @RequestMapping("sendMail") @ResponseBody public String sendMail(@RequestParam("title")String title){ System.out.println("-----title: " + title); mailService.sendSimple(to, title, title); return "success"; } }
6、测试
7、qq邮箱授权码
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持java学习网。
相关下载
-
SpringBoot全教程
大小:20.6 MB -
Spring Boot 企业级应用开发实战
大小:419 MB -
Sharding-Jdbc在springboot中配置
大小:2.5 MB
相关教程
-
Spring Boot集成springfox-swagger2构建restful API的方法教程
给网友们整理关于Spring Boot的教程,这篇文章主要给大家介绍了关于Spring Boot集成springfox-swagger2构建restful API的相关资料,文中介绍的非常详细,对大家具有一定的参考学习价值,需要的朋友们下面跟着小编一起来学习学习吧。
发布时间:2022-06-10主题:
查看详情