1、导入相应的jar包
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
2、配置参数
mail:
host: smtp.qq.com #发送邮件服务器
username: xxx@qq.com #发送邮件的邮箱地址
password: xxxx #客户端授权码,不是邮箱密码,这个在qq邮箱设置里面自动生成的
properties.mail.smtp.port: 465 #端口号465或587
from: xxx@qq.com # 发送邮件的地址,和上面username一致可以任意
properties.mail.smtp.starttls.enable: true
properties.mail.smtp.starttls.required: true
properties.mail.smtp.ssl.enable: true
default-encoding: utf-8
3、检查相应的邮件服务器是否开启服务
4、编写相应的工具
package top.cfl.cflwork.util;
import org.springframework.beans.factory.annotation.Autowired;
import org.s