欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Spring Boot实现邮件服务(附:常见邮箱的配置)

程序员文章站 2024-03-01 21:59:16
前言 发送邮件应该是网站的必备功能之一,什么注册验证,忘记密码或者是给用户发送营销信息。最早期的时候我们会使用javamail相关api来写发送邮件的相关代码,后来spr...

前言

发送邮件应该是网站的必备功能之一,什么注册验证,忘记密码或者是给用户发送营销信息。最早期的时候我们会使用javamail相关api来写发送邮件的相关代码,后来spring退出了javamailsender更加简化了邮件发送的过程,在之后springboot对此进行了封装就有了现在的spring-boot-starter-mail,本文将详细给大家介绍了关于spring boot邮件服务的相关内容,下面话不多说了,来一起看看详细的介绍吧

1. pom.xml文件中引入依赖

<dependency>
 <groupid>org.springframework.boot</groupid>
 <artifactid>spring-boot-starter-mail</artifactid>
</dependency>

2. 接口及实现类

2.1 接口

package com.yuhuashang.demo.mail;

/**
 * @author: 
 * @date: 2018/12/5 15:28
 * @description: 邮件服务的接口
 */
public interface mailservice {

 public void sendsimplemail(string to, string subject, string content);

 
}

2.2 实现类

package com.yuhuashang.demo.mail.impl;

import com.yuhuashang.demo.mail.mailservice;
import org.slf4j.logger;
import org.slf4j.loggerfactory;
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.stereotype.component;


/**
 * @author:
 * @date: 2018/12/5 15:23
 * @description: 邮件服务的实现类
 */
@component
public class mailserviceimpl implements mailservice{

 private final logger logger = (logger)
loggerfactory.getlogger(this.getclass());

 @autowired
 private javamailsender mailsender;

 @value("${mail.frommail.addr}")
 private string from;

 @override
 public void sendsimplemail(string to, string subject, string content) {
 simplemailmessage message = new simplemailmessage();
 message.setfrom(from);
 message.setto(to);
 message.setsubject(subject);
 message.settext(content);

 try {
  mailsender.send(message);
  logger.info("简单邮件已经发送。");
 }catch (exception e) {
  logger.error("发送简单邮件时发生异常!", e);
 }

 }

 
}

3. application.properties的配置

# 发送一方邮件信息
mail.frommail.addr=xxxxx
spring.mail.host=xxxxx
spring.mail.password=xxxxx
spring.mail.properties.smtp.auth=true
spring.mail.properties.smtp.timeout=25000
spring.mail.username=xxxxxx

4. 常用邮箱的配置

4.1 qq个人邮箱

# 利用qq个人邮箱发送邮件
mail.frommail.addr=xxxxxx@qq.com
spring.mail.host=smtp.qq.com
spring.mail.password=xxxxxxx // 授权密码,非登录密码
spring.mail.properties.smtp.auth=true
spring.mail.properties.smtp.timeout=25000
spring.mail.username=xxxxxxxx@qq.com

注意: spring.mail.password使用的开启stmp时,qq给的授权码,目前需要发送短信开启。

4.2 163个人邮箱

# 利用163个人邮箱发送邮件
mail.frommail.addr=xxxxxx@163.com
spring.mail.host=smtp.163.com
spring.mail.password=xxxxxxx // 授权密码,非登录密码
spring.mail.properties.smtp.auth=true
spring.mail.properties.smtp.timeout=25000
spring.mail.username=xxxxxxx@163.com

注意: spring.mail.password使用的开启stmp时,163的授权码,目前需要自己设定。

4.3 阿里云个人邮箱

# 利用aliyun个人邮箱发送
mail.frommail.addr=xxxxxx@aliyun.com
spring.mail.host=smtp.aliyun.com
spring.mail.password=xxxxxx // 默认开启,填登陆密码即可
spring.mail.properties.smtp.auth=true
spring.mail.properties.smtp.timeout=25000
spring.mail.username=xxxxxxx@aliyun.com

注意: spring.mail.password使用的是登陆密码,阿里云的stmp默认开启的,我在邮箱上没有发现可以开启或关闭的地方,自己用的登陆密码试过,是可以用的。

4.4 qq企业邮箱

# 利用qq企业邮箱发送邮件
mail.frommail.addr=xxxxxx@xx.com
spring.mail.host=smtp.exmail.qq.com
spring.mail.password=xxxxxxx // 授权密码,非登录密码
spring.mail.properties.smtp.auth=true
spring.mail.properties.smtp.timeout=25000
spring.mail.username=xxxxxxxx@xx.com

注意: spring.mail.password使用的是授权码,非登陆密码,最近没有用qq企业邮箱,之前实现过,目前应该是这样的。

4.5 163企业邮箱

# 利用163企业邮箱发送邮件
mail.frommail.addr=xxxxxx@xxx.com
spring.mail.host=smtp.qiye.163.com
spring.mail.password=xxxxxxx // 授权密码,非登录密码
spring.mail.properties.smtp.auth=true
spring.mail.properties.smtp.timeout=25000
spring.mail.username=xxxxxx@xxx.com

注意: spring.mail.password使用的是授权码,非登陆密码,由于没有使用过163企业邮箱,故不能保证可用性,如果有用过的朋友,可以给个中肯的答案。

4.6 阿里云企业邮箱

# 利用aliyun企业邮箱发送
mail.frommail.addr=xxxxxxxx@xxx.com
spring.mail.host=smtp.mxhichina.com
spring.mail.password=xxxxx // 默认开启,填登陆密码即可
spring.mail.properties.smtp.auth=true
spring.mail.properties.smtp.timeout=25000
spring.mail.username=xxxxxx@xxx.com

注意: spring.mail.password使用的是登陆密码,目前正使用阿里云企业邮箱,自己亲自测试过,目前是可以用的,填登陆密码即可。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。