Flask接口签名sign原理与实例代码浅析
262
2023-05-07
Spring Boot实现邮件发送功能
本文实例为大家分享了Spring Boot邮件发送功能的具体代码,供大家参考,具体内容如下
1、引入依赖
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、编写页面代码
xmlns:sec="http://thymeleaf.org/thymeleaf-extras-springsecurity3">
选择文件:
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邮箱授权码
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~