springboot发送邮件
时间: 2023-06-28 17:08:57 浏览: 76
Springboot发送邮件
在 Spring Boot 中发送邮件,可以使用 JavaMailSender 接口来发送电子邮件。以下是一个简单的示例:
1. 在 pom.xml 文件中添加以下依赖项:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
```
2. 在 application.properties 文件中添加邮件配置信息:
```properties
spring.mail.host=smtp.example.com
spring.mail.port=587
spring.mail.username=username
spring.mail.password=password
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
```
3. 创建一个发送电子邮件的服务类:
```java
@Service
public class EmailService {
@Autowired
private JavaMailSender mailSender;
public void sendSimpleMessage(String to, String subject, String text) {
SimpleMailMessage message = new SimpleMailMessage();
message.setTo(to);
message.setSubject(subject);
message.setText(text);
mailSender.send(message);
}
}
```
4. 在需要发送电子邮件的地方调用 sendSimpleMessage() 方法:
```java
@Autowired
private EmailService emailService;
public void sendEmail() {
emailService.sendSimpleMessage("recipient@example.com", "邮件主题", "邮件内容");
}
```
这是一个简单的示例,你可以根据自己的需要进行修改和扩展。
阅读全文