您的位置:首页技术文章
文章详情页

springboot实现发送QQ邮箱

浏览:37日期:2022-06-15 17:29:09

springboot发送电子邮箱,供大家参考,具体内容如下

1.开启qq邮箱开启IMAP/SMTP服务*

首先进入qq邮箱

springboot实现发送QQ邮箱

点击设置

springboot实现发送QQ邮箱

点击账户,然后往下拉

springboot实现发送QQ邮箱

开启IMAP/SMTP服务

springboot实现发送QQ邮箱

开启成功得到授权密码,这个要记住,一会用

2.引入pom依赖

<!--发送邮箱--><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> <version>2.2.5.RELEASE</version></dependency>

3.配置application.properties

# QQ邮箱配置spring.mail.host=smtp.qq.com#发件人QQ邮箱地址spring.mail.username=发件人的qq邮箱#QQ邮箱授权码spring.mail.password=得到的授权密码#以下三项不用改动spring.mail.properties.mail.smtp.auth=truespring.mail.properties.mail.smtp.starttls.enable=truespring.mail.properties.mail.smtp.starttls.required=true

4.创建发送电子邮箱controller

我这里收件人地址写死了,当然可以作为参数,访问这个方法的时候把参数加上就行了,效果都是一样的

package com.wyh.controller;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.*;import javax.annotation.Resource;import javax.mail.Address;import javax.mail.MessagingException;import java.util.ArrayList;@RestControllerpublic class EmailController { @Resource private JavaMailSender javaMailSender; //这一步是获取application.properties中设置的发件人邮箱地址 @Value('${spring.mail.username}') private String username; /** /* @Author 魏一鹤 * @Description 发送邮箱 * @Date 0:09 2021/5/19 * @Param [] * @return void **/ @RequestMapping('/sendEmail') public String sendMail() { //String address//发邮件 SimpleMailMessage message = new SimpleMailMessage(); //发件人邮件地址(上面获取到的,也可以直接填写,string类型) message.setFrom(username); //要发送的qq邮箱(收件人地址) message.setTo('1581622479@qq.com');//address //邮件主题 message.setSubject('java调用QQ邮箱发送'); //邮件正文 message.setText('我是用java发送的QQ邮箱');//!!! javaMailSender.send(message); return '发送成功!'; }}

5.查看效果

springboot实现发送QQ邮箱

在我的qq邮箱就能看到我们发送的内容了

springboot实现发送QQ邮箱

然后换一种写法,把收件人的地址作为参数

package com.wyh.controller;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.*;import javax.annotation.Resource;import javax.mail.Address;import javax.mail.MessagingException;import java.util.ArrayList;@RestControllerpublic class EmailController { @Resource private JavaMailSender javaMailSender; //这一步是获取application.properties中设置的发件人邮箱地址 @Value('${spring.mail.username}') private String username; /** /* @Author 魏一鹤 * @Description 发送邮箱 * @Date 0:09 2021/5/19 * @Param [] * @return void **/ @RequestMapping('/sendEmail') public String sendMail(String address) { //String address//发邮件 SimpleMailMessage message = new SimpleMailMessage(); //发件人邮件地址(上面获取到的,也可以直接填写,string类型) message.setFrom(username); //要发送的qq邮箱(收件人地址) message.setTo(address);//address //邮件主题 message.setSubject('java调用QQ邮箱发送'); //邮件正文 message.setText('我是用java发送的QQ邮箱');//!!! javaMailSender.send(message); return '发送成功!'; }}

springboot实现发送QQ邮箱

效果都是一样的。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持好吧啦网。

标签: qq
相关文章: