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

溫馨提示×

溫馨提示×

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

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

spring boot中怎么發送文本郵件

發布時間:2021-06-15 15:07:01 來源:億速云 閱讀:115 作者:Leah 欄目:編程語言

spring boot中怎么發送文本郵件,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

首先要去郵箱打開POP3/SMTP權限:

spring boot中怎么發送文本郵件

spring boot中怎么發送文本郵件

然后會提供個授權碼,用來發送郵件。忘記了,可以點生成授權碼再次生成。

spring boot中怎么發送文本郵件

1、引入spring boot自帶的mail依賴,這里版本用的:<spring-boot.version>1.4.3.RELEASE</spring-boot.version>

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-mail</artifactId>
  <version>${spring-boot.version}</version>
  <scope>provided</scope>
</dependency>

2、spring boot配置文件添加郵箱參數信息

spring.mail.host=smtp.qq.com
spring.mail.username=你的qq號碼@qq.com
spring.mail.password=qq郵箱開啟SMTP提供的授權碼(注意:不是你的qq郵箱密碼)#下面一般不用動
spring.mail.default-encoding=${spring.http.encoding.charset}
spring.mail.properties.mail.smtp.connectiontimeout=5000 
spring.mail.properties.mail.smtp.timeout=3000
spring.mail.properties.mail.smtp.writetimeout=5000
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
spring.mail.properties.mail.smtp.starttls.required=true

3、測試發送

@Autowired
        private JavaMailSender mailSender;
        
        @Value("${spring.mail.username}")
        private String from;


SimpleMailMessage smm = new SimpleMailMessage();
            smm.setFrom(from);
            smm.setTo("發送方郵件地址");
            smm.setSubject("springboot測試郵件");
            smm.setText("簡單文本郵件測試發送!");
            mailSender.send(smm);

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

AI

怀集县| 莱西市| 米脂县| 阜平县| 佛山市| 浦东新区| 柳江县| 收藏| 盐亭县| 永清县| 马公市| 四会市| 八宿县| 綦江县| 凤城市| 酉阳| 弥勒县| 新和县| 阜新市| 密山市| 开封县| 安阳县| 浏阳市| 布尔津县| 樟树市| 肥西县| 永平县| 阳江市| 吴桥县| 仁化县| 汉沽区| 胶南市| 宜川县| 连城县| 高碑店市| 南通市| 塘沽区| 克什克腾旗| 扶绥县| 清远市| 慈利县|