SpringBoot发送QQ邮箱

SpringBoot发送QQ邮箱

前言:

因项目有部分功能要发送企业内部邮箱,要用到QQ邮箱测试下网段是否通,用于排查下问题。

发送邮箱

1,导入依赖

c 复制代码
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-mail</artifactId>
        </dependency>

2,QQ邮箱开通SMTP协议

发送邮件简单说,需要有个中介转发下 ,这个中介是SMTP协议

发送者 -->> SMTP协议 -->> 接收者

3,编写发送邮件代码案例

yml配置

c 复制代码
# yml的配置文件
  mail:
    host: smtp.qq.com
    # 发送者信息,注意密码是授权码,不是密码
    username: 1xxx4149@qq.com
    password: erwxxbpfxxcajg
    # 接收着邮箱
    receiver: 26xx822xx4@qq.com
    default-encoding: utf-8
    protocol: smtp
    properties:
      mail:
        smtp:
          auth: true
          starttls:
            enable: true
            required: true

controller:

c 复制代码
package com.xxx.xxx.platform.controller;

import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
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.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @author psd
 */
@Slf4j
@Api(tags = "QQ邮箱")
@RestController
@RequestMapping("platform/qqEmail")
public class QqEmailController {

    @Value("${spring.mail.username}")
    private String userName;


    @Value("${spring.mail.receiver}")
    private String receiver;

    @Autowired
    private JavaMailSender javaMailSender;


    @GetMapping("/sentQqEmail")
    public void sentQqEmail(){
        log.info("配置文件中的信息 userName:{},receiver:{}",userName,receiver);
        SimpleMailMessage message = new SimpleMailMessage();
        // 发送着
        message.setFrom(userName);
//        message.setTo(receiver);
        message.setSubject("测试发送邮箱的主题");
        message.setText("我是文本信息 测试是否发送成功");
        javaMailSender.send(message);
    }

}

注意事项:

1,配置密码不是,邮箱的密码是授权码,【理解可能不对:就是在SMTP上面做一个假登录】

2,QQ邮箱一定要开通,支持SMTP协议

喜欢我的文章记得点个在看,或者点赞,持续更新中ing...

相关推荐
qq_25183645728 分钟前
springboot vue3 开发实现 拼豆管理系统
java·开发语言·ai编程
caoerzhong1 小时前
JeeWMS 开源仓库管理系统全景解读:一套 Java WMS 如何把 WMS/OMS/BMS/TMS 装进同一个系统
java·开源
曹牧1 小时前
Java集合框架:List、ArrayList、Map 和 HashMap
java
顾城猿1 小时前
STOMP 协议
java
郑州光合科技余经理1 小时前
同城外卖小程序开发:下单成功后,后台导出能不能对上用户端状态
开发语言·前端·git·后端·uni-app·php·ai编程
+VX:Fegn08952 小时前
计算机毕业设计|基于springboot + vue旅游管理系统(源码+数据库+文档)
java·开发语言·vue.js·spring boot·课程设计
IT_陈寒2 小时前
Vue的响应式让我熬到凌晨三点,原来漏了这个小细节
前端·人工智能·后端
需要8262 小时前
MySQL 索引 B+ 树与“查询为什么变慢了
java·spring boot·spring·spring cloud·tomcat
一 乐2 小时前
二手交易平台|基于springboot + vue二手交易平台(源码+数据库+文档)
java·数据库·vue.js·spring boot·小程序
万年咸鱼2 小时前
编译Java源程序
java