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);

}

}

相关推荐
程序员黑豆1 小时前
Java 注释详解:单行、多行与文档注释的完整指南
java·前端·ai编程
hey_sml2 小时前
JAVA每日一学---CompletableFuture中thenApply与thenCompose区别详解
java·开发语言
Doraemomo2 小时前
数据结构-环形链表
java·数据结构·链表
江畔柳前堤3 小时前
HBM:大语言模型时代的「算力血液」——从内存墙到带宽革命的深度拆解
服务器·人工智能·windows·目标检测·语言模型·自然语言处理·软件工程
萧瑟余晖4 小时前
Java深入解析篇十七之SpringCloud
java·开发语言
IvorySQL4 小时前
PostgreSQL 日报 | JOIN 与外键优化(8 月 9 日)
数据库·postgresql
是未才4 小时前
从输入 URL 到页面返回:DNS、路由、TLS 与 HTTP 完整链路
java·后端·计算机网络
ltl5 小时前
自治数据库十年回顾:Peloton、NoisePage、OtterTune 到云原生 auto-tuning
数据库
不会就选b5 小时前
Linux之信号(二)
linux·运维·服务器
ttod_qzstudio5 小时前
Java 常用语法极简通关(五):类与对象——字段、方法、构造器、this 与 static
java·开发语言·python