springboot发送邮件功能
时间: 2023-07-21 16:11:25 浏览: 116
Springboot实现邮件发送功能
Spring Boot 提供了简单而强大的邮件发送功能。以下是使用 Spring Boot 发送邮件的基本步骤:
1. 配置邮件发送参数:在 `application.properties`(或 `application.yml`)文件中配置邮件发送相关的参数,例如邮件服务器地址、端口、认证信息等。例如:
```properties
spring.mail.host=smtp.example.com
spring.mail.port=587
spring.mail.username=your-email@example.com
spring.mail.password=your-email-password
```
2. 创建一个邮件发送服务类:创建一个 Java 类,用于封装邮件发送的逻辑。可以使用 Spring Boot 提供的 `JavaMailSender` 类来发送邮件。例如:
```java
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.mail.SimpleMailMessage;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.stereotype.Service;
@Service
public class EmailService {
@Autowired
private JavaMailSender mailSender;
public void sendEmail(String to, String subject, String text) {
SimpleMailMessage message = new SimpleMailMessage();
message.setTo(to);
message.setSubject(subject);
message.setText(text);
mailSender.send(message);
}
}
```
3. 在需要发送邮件的地方调用邮件发送服务:在需要发送邮件的地方,注入邮件发送服务,并调用其方法发送邮件。例如:
```java
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class EmailController {
@Autowired
private EmailService emailService;
@GetMapping("/send-email")
public String sendEmail() {
emailService.sendEmail("recipient@example.com", "Hello", "This is a test email");
return "Email sent";
}
}
```
以上是使用 Spring Boot 发送邮件的基本步骤。根据实际需求,你还可以使用模板引擎来发送 HTML 邮件,添加附件等。
阅读全文