Spring Boot Starter Mail: 快速邮件发送指南
使用 Spring Boot Starter Mail 可以快速地实现邮件发送功能,需要遵循以下步骤:
- 添加依赖
在 pom.xml 文件中添加以下依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
- 配置邮件发送信息
在 application.properties 文件中添加邮件发送的配置信息,例如:
spring.mail.host=smtp.qq.com
spring.mail.username=xxx@qq.com
spring.mail.password=xxx
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
- 编写邮件发送代码
在代码中注入 JavaMailSender 实例,使用它来发送邮件,例如:
@Autowired
private JavaMailSender mailSender;
public void sendEmail(String to, String subject, String content) {
SimpleMailMessage message = new SimpleMailMessage();
message.setTo(to);
message.setSubject(subject);
message.setText(content);
mailSender.send(message);
}
以上就是使用 Spring Boot Starter Mail 实现邮件发送的基本步骤。
原文地址: https://www.cveoy.top/t/topic/m7T6 著作权归作者所有。请勿转载和采集!