网站首页 > java教程 正文
虽然现在短信验证已经最流行也是最常用的验证方式;但是邮件验证还是必不可少,依然是网站的必备功能之一。什么注册验证,忘记密码或者是给用户发送营销信息都是可以使用邮件发送功能的。最早期使用JavaMail的相关api来进行发送邮件的功能开发,后来spring整合了JavaMail的相关api推出了JavaMailSender更加简化了邮件发送的代码编写,现在springboot对此进行了封装就有了现在的spring-boot-starter-mail。
1、新建项目sc-mail,对应的pom.xml文件如下

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>spring-cloud</groupId> <artifactId>sc-mail</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>sc-mail</name> <url>http://maven.apache.org</url> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.4.RELEASE</version> </parent> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Finchley.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> </project>
2、新建配置文件application.yml
spring: application: name: sc-mail mail: host: smtp.qq.com #邮箱服务器地址 port: 465 username: 515768476@qq.com #用户名 password: vfcqhwsnnwugbhcx #密码 (改成自己的密码) default-encoding: UTF-8 properties: mail: smtp: ssl: enable: true
3、新建邮件发送服务类
package sc.mail.service.impl;
import java.io.File;
import javax.mail.internet.MimeMessage;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.FileSystemResource;
import org.springframework.mail.SimpleMailMessage;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.mail.javamail.MimeMessageHelper;
import org.springframework.stereotype.Service;
import sc.mail.service.MailService;
@Service
public class MailServiceImpl implements MailService {
private final Logger logger = LoggerFactory.getLogger(this.getClass());
@Autowired
private JavaMailSender mailSender;
/**
* 文本
* @param from
* @param to
* @param subject
* @param content
*/
@Override
public void sendSimpleMail(String from, 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("simple mail had send。");
} catch (Exception e) {
logger.error("send mail error", e);
}
}
/**
* @param from
* @param to
* @param subject
* @param content
*/
public void sendTemplateMail(String from, String to, String subject, String content) {
MimeMessage message = mailSender.createMimeMessage();
try {
//true表示需要创建一个multipart message
MimeMessageHelper helper = new MimeMessageHelper(message, true);
helper.setFrom(from);
helper.setTo(to);
helper.setSubject(subject);
helper.setText(content, true);
mailSender.send(message);
logger.info("send template success");
} catch (Exception e) {
logger.error("send template eror", e);
}
}
/**
* 附件
*
* @param from
* @param to
* @param subject
* @param content
* @param filePath
*/
public void sendAttachmentsMail(String from, String to, String subject, String content, String filePath){
MimeMessage message = mailSender.createMimeMessage();
try {
MimeMessageHelper helper = new MimeMessageHelper(message, true);
helper.setFrom(from);
helper.setTo(to);
helper.setSubject(subject);
helper.setText(content, true);
FileSystemResource file = new FileSystemResource(new File(filePath));
String fileName = filePath.substring(filePath.lastIndexOf(File.separator));
helper.addAttachment(fileName, file);
mailSender.send(message);
logger.info("send mail with attach success。");
} catch (Exception e) {
logger.error("send mail with attach success", e);
}
}
/**
* 发送内嵌图片
*
* @param from
* @param to
* @param subject
* @param content
* @param imgPath
* @param imgId
*/
public void sendInlineResourceMail(String from, String to, String subject, String content,
String imgPath, String imgId){
MimeMessage message = mailSender.createMimeMessage();
try {
MimeMessageHelper helper = new MimeMessageHelper(message, true);
helper.setFrom(from);
helper.setTo(to);
helper.setSubject(subject);
helper.setText(content, true);
FileSystemResource res = new FileSystemResource(new File(imgPath));
helper.addInline(imgId, res);
mailSender.send(message);
logger.info("send inner resources success。");
} catch (Exception e) {
logger.error("send inner resources fail", e);
}
}
}
4、新建测试类
package sc.mail;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import sc.mail.service.MailService;
@RunWith(SpringRunner.class)
@SpringBootTest
public class MailSendTest {
@Autowired
private MailService mailService;
@Test
public void sendSimpleMailTest() {
mailService.sendSimpleMail("515768476@qq.com", "happy.huangjinjin@163.com",
"sendSimpleMailTest", "sendSimpleMailTest from 515768476@qq.com");
}
@Test
public void sendTemplateMailTest() {
String html = "<html><body>"
+ " <div> "
+ " sendTemplateMailTest from 515768476@qq.com </br>"
+ " <b>这是模板邮件</b>"
+ "</div>"
+ "</body></html>";
mailService.sendTemplateMail("515768476@qq.com", "happy.huangjinjin@163.com",
"sendTemplateMailTest", html);
}
@Test
public void sendAttachmentsMailTest() {
String filePath = "D:\\springcloudws\\sc-mail\\src\\main\\java\\sc\\mail\\service\\impl\\MailServiceImpl.java";
mailService.sendAttachmentsMail("515768476@qq.com", "happy.huangjinjin@163.com",
"sendAttachmentsMailTest", "sendAttachmentsMailTest from 515768476@qq.com", filePath);
}
@Test
public void sendInlineResourceMailTest() {
String imgId = "img1";
String content = "<html><body>"
+ "sendInlineResourceMailTest:<img src=\'cid:" + imgId + "\' >"
+ "</body></html>";
String imgPath = "D:\\springcloudws\\sc-mail\\src\\main\\resources\\20181015223228.jpg";
mailService.sendInlineResourceMail("515768476@qq.com", "happy.huangjinjin@163.com",
"sendAttachmentsMailTest", content, imgPath, imgId);
}
}
5、运行测试类验证是否发送邮件成功
登录happy.huangjinjin@163.com邮箱
简单邮件
模板邮件
附件邮件
内嵌图片邮件
猜你喜欢
- 2024-09-14 SpringBoot发送简单文本邮件(springboot 发送邮件)
- 2024-09-14 Github 大牛封装 Python 代码,实现自动发送邮件只需三行代码
- 2024-09-14 Java定时发送Email(带Excel附件)(java怎么实现定时任务)
- 2024-09-14 Spring Boot 邮件发送的 5 种姿势
- 2024-09-14 SpringBoot优雅地发送邮件(springboot发送邮件的步骤)
- 2024-09-14 Spring boot 发送邮件及原理(springboot发送outlook邮件)
- 2024-09-14 10分钟搞定Java实现邮箱验证,坦率讲,别被他人割韭菜
- 2024-09-14 SpringBoot邮件发送示例(springboot 邮件)
- 2024-09-14 使用spring boot 发送邮件(springboot发送outlook邮件)
- 2024-09-14 SpringBoot整合JavaMail发送邮件(springboot email)
欢迎 你 发表评论:
- 最近发表
- 标签列表
-
- java反编译工具 (77)
- java反射 (57)
- java接口 (61)
- java随机数 (63)
- java7下载 (59)
- java数据结构 (61)
- java 三目运算符 (65)
- java对象转map (63)
- Java继承 (69)
- java字符串替换 (60)
- 快速排序java (59)
- java并发编程 (58)
- java api文档 (60)
- centos安装java (57)
- java调用webservice接口 (61)
- java深拷贝 (61)
- 工厂模式java (59)
- java代理模式 (59)
- java.lang (57)
- java连接mysql数据库 (67)
- java重载 (68)
- java 循环语句 (66)
- java反序列化 (58)
- java时间函数 (60)
- java是值传递还是引用传递 (62)

本文暂时没有评论,来添加一个吧(●'◡'●)