首先創(chuàng)建一個郵箱賬號,建議@126.com,@163.com,@qq.com 都可以
我們提供的服務(wù)有:成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認證、芷江ssl等。為近1000家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的芷江網(wǎng)站制作公司
開啟smtp,以下是使用圖解:
創(chuàng)建SpringBoot項目導(dǎo)入依賴
org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-mail
application.properties文件中配置:
spring.mail.default-encoding=UTF-8
spring.mail.host=smtp.163.com
#發(fā)送者的郵箱密碼
spring.mail.password=xxxxx
#端口
spring.mail.port=25
#協(xié)議
spring.mail.protocol=smtp
#發(fā)送者的郵箱賬號
spring.mail.username=xxxxxxx@163.com
server.port=8081
以文本的形式發(fā)送:
package com.example.demo; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.mail.SimpleMailMessage; import org.springframework.mail.javamail.JavaMailSender; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; /** * @author * @site * @company * @create 2020-03-07 1:06 */ @RestController public class MailController { @Autowired JavaMailSender jsm; @Value("${spring.mail.username}") private String username; @GetMapping("/send") public String send(){ //建立郵箱消息 SimpleMailMessage message = new SimpleMailMessage(); //發(fā)送者 message.setFrom(username); //接收者 message.setTo("1352192872@qq.com"); //發(fā)送標(biāo)題 message.setSubject("測試"); //發(fā)送內(nèi)容 message.setText("測試數(shù)據(jù)"); jsm.send(message); return "1"; } }
結(jié)果:
發(fā)送方:
接收方:
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。