欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 房产 > 家装 > 基于SpringBoot构造超简易QQ邮件服务发送(分离-图解-新手)

基于SpringBoot构造超简易QQ邮件服务发送(分离-图解-新手)

2024/11/30 12:43:52 来源:https://blog.csdn.net/weixin_56861179/article/details/140300826  浏览:    关键词:基于SpringBoot构造超简易QQ邮件服务发送(分离-图解-新手)

目录

获取QQ 授权码

SpringBoot构建

依赖

Yaml配置

服务编写

测试


获取QQ 授权码

https://mail.qq.com/

接着后就会有对应的密钥了

SpringBoot构建

依赖

这里的建议是 2.0系列的Springboot版本用低一点的邮件依赖

<!--    电子邮件    -->
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-mail</artifactId><version>2.7.18</version>
</dependency>

Yaml配置

spring:mail:default-encoding: UTF-8host: smtp.qq.comport: 587username: 你的邮件password: 刚刚QQ生成的密钥properties:mail:smtp:starttls:enable: trueauth: truesocketFactory:class: javax.net.ssl.SSLSocketFactorydebug: true

服务编写

为了方便直接写在 控制层 了

package com.takem.controller;import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.mail.SimpleMailMessage;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;@RestController
public class EmailController {@Autowiredprivate JavaMailSender mailSender;@GetMapping("/email")public String sendSimpleMessage() {SimpleMailMessage mailMessage = new SimpleMailMessage();mailMessage.setFrom("自己的邮箱");mailMessage.setTo("别人的邮箱");mailMessage.setText("这是内容");mailMessage.setSubject("这是邮件标题");mailSender.send(mailMessage);return "====完成发送!====";}
}

测试

以自己发给自己为例

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com