中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

东莞市| 宾川县| 南宫市| 甘南县| 奉新县| 原阳县| 北宁市| 化隆| 徐水县| 深水埗区| 泸州市| 建湖县| 萨迦县| 连州市| 霍城县| 江阴市| 昂仁县| 顺义区| 滁州市| 靖西县| 西安市| 丹东市| 灵石县| 页游| 馆陶县| 板桥市| 策勒县| 渭源县| 彰化县| 海城市| 肇源县| 车致| 蒲城县| 湖北省| 尚志市| 江华| 定安县| 四会市| 宿迁市| 安岳县| 宜春市|