SpringBoot,发送到邮箱

  • 来源:新网
  • 更新日期:2018-03-13

摘要:1.pom.xml文件 dependency> groupId>org.springframework.bootgroupId> artifactId>spring-boot-starter-mailartifactId> dependency> 2.application.properties配置 #发送邮件的配置 #用那个邮箱发送邮件 spri

1.pom.xml文件

t01c8b2b3eccaa69d8b.jpg

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"; }