摘要:1.pom.xml文件 dependency> groupId>org.springframework.bootgroupId> artifactId>spring-boot-starter-mailartifactId> dependency> 2.application.properties配置 #发送邮件的配置 #用那个邮箱发送邮件 spri
1.pom.xml文件
org.springframework.boot spring-boot-starter-mail
2.application.properties配置
#发送邮件的配置
#用那个邮箱发送邮件 spring.mail.host=smtp.163.com #spring.mail.port=465 spring.mail.username=邮箱账号
spring.mail.password=邮箱密码 spring.mail.default-encoding=utf-8 spring.mail.properties.mail.smtp.auth=true spring.mail.properties.mail.smtp.starttls.enable=true spring.mail.properties.mail.smtp.starttls.required=true
3.实体类中
@Autowired private JavaMailSender sender; @Value("${spring.mail.username}") private String from;//邮箱名字
//邮箱 @RequestMapping("selectEmail") @ResponseBody public String selectEmail(){ System.out.println("进入"); SimpleMailMessage s=new SimpleMailMessage(); s.setFrom(from); s.setTo("123456@qq.com");//发送到那个邮箱账号 s.setSubject("标题"); s.setText("经过严格的筛选,您被确定为最佳候选人,欢迎您来面试!"); sender.send(s); return "ok"; }
相关文章推荐
已有家长中招!“录取通知书”邮件暗藏骗局2022-09-06
连接企微和钉钉,新网全球邮助力企业协同办公2022-09-27
快速申请搭建免费企业邮箱的教程2022-09-16
如何避免你的外贸开发信被当成垃圾邮件?2022-09-14
2021年,全国企业邮箱用户共收发邮件约7637.7亿封2022-09-13