博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
配置Spring发送邮件
阅读量:6036 次
发布时间:2019-06-20

本文共 4614 字,大约阅读时间需要 15 分钟。

Spring Email抽象的核心是MailSender接口。顾名思义,MailSender的实现能够通过连接Email服务器实现邮件发送的功能。

Spring的MailSender接口是SpringEmail抽象API的核心组件。它把Email发送黑邮件服务器,由服务器进行邮件投递

Spring自带的一个MailSender的实现——JavaMailSenderImpl。它会使用JavaMail API来发送Email。

配置邮件发送器

需要的核心maven:

org.springframework
spring-context-support
4.3.8.RELEASE
javax.mail
mail
1.4.7

配置bean:

public class RootConfig {    /** * 配置邮件发送器 * @return */ @Bean public MailSender mailSender() { JavaMailSenderImpl mailSender = new JavaMailSenderImpl(); mailSender.setHost("smtp.163.com");//指定用来发送Email的邮件服务器主机名 mailSender.setPort(25);//默认端口,标准的SMTP端口 mailSender.setUsername("test@163.com");//用户名 mailSender.setPassword("test");//密码 return mailSender; } }

需要注意的是,如果你使用163等邮件服务器的话,一定要在设置中开启SMTP。

装配和使用邮件发送器

@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(classes={RootConfig.class, WebConfig.class})@WebAppConfigurationpublic class EmailSenderTest { @Autowired private JavaMailSender mailSender; @Test public void sendSimpleEmail(){ SimpleMailMessage message = new SimpleMailMessage();//消息构造器 message.setFrom("test@163.com");//发件人 message.setTo("shoujian@tom.com");//收件人 message.setSubject("Spring Email Test");//主题 message.setText("hello world!!");//正文 mailSender.send(message); System.out.println("邮件发送完毕"); } }

下面是收到的邮件:

邮件截图

构建丰富内容的Email消息

添加附件

发送带有附件的Email,关键技巧是创建multipart类型的消息——Email由多个部分组成,其中一部分是Email体,其他部分是附件。

为了发送multipart类型的Email,你需要创建一个MIME(Multipurpose Internet Mail Extensions)的消息。

/**     * 发送带有附件的email     * @throws MessagingException      */    @Test    public void sendEmailWithAttachment() throws MessagingException{ MimeMessage message = mailSender.createMimeMessage(); MimeMessageHelper helper = new MimeMessageHelper(message, true);//构造消息helper,第二个参数表明这个消息是multipart类型的 helper.setFrom("testFrom@163.com"); helper.setTo("testTo@qq.com"); helper.setSubject("Spring Email Test"); helper.setText("这是一个带有附件的消息"); //使用Spring的FileSystemResource来加载fox.png FileSystemResource image = new FileSystemResource("D:\\fox.png"); System.out.println(image.exists()); helper.addAttachment("fox.png", image);//添加附加,第一个参数为添加到Email中附件的名称,第二个人参数是图片资源 mailSender.send(message); System.out.println("邮件发送完毕"); }

 

javax.mail.internet.MimeMessage本身的API有些笨重。Spring为我们提供了MimeMessageHelper,来帮助我们,只需要将其实例化并将MimeMessage传给其构造器。

结果:
带有附件的Email

发送富文本内容的Email

这里我们使用嵌入式的图片:

/**     * 发送富文本内容的Email     * @throws MessagingException      */    @Test    public void sendRichEmail() throws MessagingException{ MimeMessage message = mailSender.createMimeMessage(); MimeMessageHelper helper = new MimeMessageHelper(message, true); helper.setFrom("testFrom@163.com"); helper.setTo("testTo@qq.com"); helper.setSubject("Spring Email Test"); helper.setText("" + "

Hello World!!!

" + "", true);//第二个参数表明这是一个HTML //src='cid:testLogo'表明在消息中会有一部分是图片并以testLogo来进行标识 ClassPathResource image = new ClassPathResource("logo.jpg"); System.out.println(image.exists()); helper.addInline("testLogo", image);//添加内联图片,第一个参数表明内联图片的标识符,第二个参数是图片的资源引用 mailSender.send(message); }

结果:

富文本内容的Email

使用模板生成Email

使用Velocity构建Email消息

Apache Velocity是由Apache提供的通用的模板引擎。

配置VelocityEngine工厂bean,它能在Spring应用上下文中很便利的生成VelocityEngine:

/**     * 配置VelocityEngine工厂Bean     * @return     */    @Bean    public VelocityEngineFactoryBean velocityEngine() { VelocityEngineFactoryBean velocityEngine = new VelocityEngineFactoryBean(); Properties props = new Properties(); props.setProperty("resource.loader", "class"); props.setProperty("class.resource.loader.class", ClasspathResourceLoader.class.getName()); velocityEngine.setVelocityProperties(props); return velocityEngine; }

这里我们将其配置为从类路径下加载Velocity模板

使用:

@Autowired    VelocityEngine velocityEngine;    @SuppressWarnings("deprecation")    @Test    public void sendEmailByVelocity() throws MessagingException{ Map
modal = new HashMap
(); modal.put("name", "薛小强"); modal.put("text", "这是一个用Velocity生成的模板"); //使用VelocityEngineUtils将Velocity模板与模型数据合并成String String emailText = VelocityEngineUtils .mergeTemplateIntoString(velocityEngine, "emailTemplate.vm", "UTF-8", modal); MimeMessage message = mailSender.createMimeMessage(); //第三个参数设置编码,否则如果有汉字会出现乱码问题 MimeMessageHelper helper = new MimeMessageHelper(message, true, "utf-8"); helper.setFrom("testForm@163.com"); helper.setTo("testTo@qq.com"); helper.setSubject("Spring Email Test"); helper.setText(emailText, true); ClassPathResource image = new ClassPathResource("logo.jpg"); helper.addInline("logo", image); mailSender.send(message); System.out.println("邮件发送完毕"); }

这里的模板emailTemplate.vm文件内容为:

  

Hello ${name}

${text}

结果:

使用Velocity模板生成Email

转载于:https://www.cnblogs.com/webyyq/p/8799020.html

你可能感兴趣的文章
最近有个需求,就是把某个网址跳转到另外一个网址
查看>>
innobackupex 在增量的基础上增量备份
查看>>
Windows Server 2012 R2 DirectAccess功能测试(2)App1服务器安装及配置
查看>>
基于清单的启动器的实现
查看>>
外网用户通过citrix打印慢的解决方法
查看>>
STL容器的使用
查看>>
关于std::map
查看>>
JXL导出Excel文件兼容性问题
查看>>
VBoot1.0发布,Vue & SpringBoot 综合开发入门
查看>>
centos7 安装wps 后 演示无法启动
查看>>
git简单命令
查看>>
LAMP编译部署
查看>>
XenDesktop7.6安装部署入门教程
查看>>
HashMap的工作原理及HashMap和Hashtable的区别
查看>>
GregorianCalendar日历程序
查看>>
Sublime 中运行 Shell 、Python、Lua、Groovy...等各种脚本
查看>>
【Java集合源码剖析】ArrayList源码剖析
查看>>
linux基础概念和个人笔记总结(6)
查看>>
CentOS 5.6创建NFS文件共享服务器
查看>>
RHCS+Conga+GFS+cLVM共享存储的高可用性web集群
查看>>