本文实例为大家分享了Spring Boot邮件发送功能的具体代码,供大家参考,具体内容如下
1、引入依赖
<!-- mail依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency>2、参数配置
在application.properties中配置邮件相关的参数
spring.thymeleaf.cache=falsespring.mail.host=smtp.qq.comspring.mail.username=***@qq.comspring.mail.password=ymwrdffauajebgde //此处的密码时qq邮箱的授权码spring.mail.properties.mail.smtp.auth=true spring.mail.properties.mail.smtp.starttls.enable=truespring.mail.properties.mail.smtp.stattls.required=true3、邮件Service代码
@Servicepublic 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://"; @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邮箱授权码
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。