springboot send qq mail

spring.mail.host=smtp.qq.com

spring.mail.port=465

spring.mail.username=970959041@qq.com

spring.mail.password=xfuupxjimcpfbbdf

spring.mail.properties.mail.smtp.ssl.enable=true

spring.mail.properties.mail.smtp.auth=true

#spring.mail.properties.mail.smtp.starttls.enable=false

#spring.mail.properties.mail.smtp.starttls.required=false

@Component

public class EmailSender {

@Autowired

private JavaMailSender emailSender;

public void sendEmailToRecepient() throws MessagingException {

MimeMessage mimeMessage = emailSender.createMimeMessage();

MimeMessageHelper message = new MimeMessageHelper(mimeMessage, true, "UTF-8");

message.setFrom("xxxx@qq.com");

message.setTo("yyyy@qq.com");

message.setSubject("this is a test");

message.setText("Good luck", true);

emailSender.send(mimeMessage);

}

}

相关推荐
ps酷教程2 小时前
Jackson 解决没有无参构造函数的反序列化问题
java
NiceCloud喜云2 小时前
Opus 4.8 的 Effort Control 怎么选:Low 到 Max 五档策略
android·java·大数据·前端·c++·python·spring
为思念酝酿的痛2 小时前
POSIX信号量
linux·运维·服务器·后端
ccddsdsdfsdf3 小时前
DBeaver怎么链接mongoDB
数据库·mongodb
_日拱一卒3 小时前
LeetCode:994腐烂的橘子
java·数据结构·算法·leetcode·深度优先
隔窗听雨眠3 小时前
Nginx网关响应慢排查手记
java·服务器·nginx
丷丩3 小时前
Postgresql基础实践教程(十一)各种Join
数据库·postgresql·join
星夜夏空994 小时前
FreeRTOS学习(4)——内存映射
数据库·学习·mongodb
人还是要有梦想的4 小时前
linux下用搜狗输入法,中英文切换
linux·运维·服务器
智慧物业老杨4 小时前
智慧物业合同周期管理系统:从风险预警到智能交接的全流程数智化落地方案
java·人工智能·python