91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot郵件發送功能

發布時間:2024-11-27 15:07:07 來源:億速云 閱讀:78 作者:小樊 欄目:編程語言

在Spring Boot中實現郵件發送功能非常簡單。你需要完成以下幾個步驟:

  1. 添加依賴

在你的pom.xml文件中添加以下依賴:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-mail</artifactId>
</dependency>
  1. 配置郵件發送參數

application.propertiesapplication.yml文件中配置郵件發送參數,例如:

spring.mail.host=smtp.example.com
spring.mail.port=587
spring.mail.username=your_email@example.com
spring.mail.password=your_email_password
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
  1. 創建郵件發送服務

創建一個名為EmailService的類,并注入JavaMailSender接口:

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

    public void sendSimpleMessage(String to, String subject, String text) {
        SimpleMailMessage message = new SimpleMailMessage();
        message.setTo(to);
        message.setSubject(subject);
        message.setText(text);
        javaMailSender.send(message);
    }
}
  1. 使用郵件發送服務

在你的控制器或其他需要發送郵件的地方,注入EmailService并調用sendSimpleMessage方法:

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("/sendEmail")
    public String sendEmail() {
        emailService.sendSimpleMessage("recipient@example.com", "Test Subject", "Test email body");
        return "Email sent!";
    }
}

現在,當你訪問/sendEmail端點時,應該會收到一封包含指定主題和文本的郵件。你可以根據需要自定義EmailService中的sendSimpleMessage方法,以發送更復雜的郵件內容。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

镇江市| 武山县| 耒阳市| 沛县| 内黄县| 威远县| 克山县| 乌兰浩特市| 牙克石市| 且末县| 邵阳县| 济南市| 清水河县| 石嘴山市| 始兴县| 营口市| 遂溪县| 武乡县| 江山市| 镇安县| 无极县| 黑河市| 永城市| 沐川县| 绥宁县| 江永县| 浏阳市| 大竹县| 石渠县| 含山县| 开化县| 佛教| 红河县| 新安县| 图们市| 黑河市| 安多县| 商河县| 汾阳市| 固始县| 澎湖县|