Springboot整合Jsp并且使⽤thymeleaf做邮件模板1、导⼊thymeleaf和jsp依赖
在main⽬录下创建webapp⽂件夹
项⽬右键选择Open Module Seetings
然后再web下添加webapp⽂件夹
2、配置视图解析器
3、将thymeleaf邮件模板放在templates下
4、发送邮件
@Autowired
JavaMailSender javaMailSender;
@Autowired
TemplateEngine templateEngine;
@PostMapping ("/send")
public String FindAccount(User user) throws MessagingException { User account = userService.Email());
if(account!=null){
String randomPassword = Utils.randomPassword();
userService.Id(),randomPassword); MimeMessage msg =ateMimeMessage(); MimeMessageHelper helper =new MimeMessageHelper(m
sg,true); helper.setSubject(“后台管理系统回密码”);
Context context = new Context();
context.setVariable(“username”,Name());
context.setVariable(“password”,randomPassword);
String process = templateEngine.process(“mail.html”, context); helper.setText(process,true);
helper.setFrom(“发送账号的邮箱”);
helper.Email());
helper.setSentDate(new Date());
javaMailSender.send(msg);
return “redirect:/login”;
}
thymeleaf用法
return “login”;
}
邮件模板:
5、javaMail配置如下:
spring.mail.host=smtp.163
spring.mail.port=25
spring.mail.username=发邮件的账号
spring.mail.password=这⾥是授权码不是邮箱密码
spring.mail.default-encoding=UTF-8
spring.mail.properties.mail.smtp.socketFactory.class=javax.ssl.SSLSocketFactory spring.mail.properties.mail.debug=true

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。