`

利用Spring发送邮件

阅读更多

本文主要介绍如何使用简单的Spring邮件抽象层来实现邮件发送功能,对于JavaMail中的API并不做介绍。通过对比JavaMail的 API和Spring的邮件抽象层,我觉得,Spring的邮件抽象层优点就是简化了代码量,并能充分利用IOC功能;缺点就是要使用部分Spring API,使程序与第三方框架耦合。关于这方面的内容,可以参考Spring的参考手册。

闲言少叙,现在就说说Spring邮件抽象层。这里将要用的接口和类有:

1 ) MailSender ,它是发送邮件的主要接口,代码如下:

 

Java代码 复制代码
  1. public interface MailSender { /*** Send the given simple mail message.  
  2.  
  3. * @param simpleMessage the message to send  
  4.  
  5. * @throws org.springframework.mail.MailParseException  
  6.  
  7. * in case of failure when parsing the message  
  8.  
  9. * @throws org.springframework.mail.MailAuthenticationException  
  10.  
  11. * in case of authentication failure  
  12.  
  13. * @throws org.springframework.mail.MailSendException  
  14.  
  15. * in case of failure when sending the message  
  16.  
  17. */  
  18.   
  19. void send(SimpleMailMessage simpleMessage) throws MailException;   
  20.   
  21. /**  
  22.  
  23. * Send the given array of simple mail messages in batch.  
  24.  
  25. * @param simpleMessages the messages to send  
  26.  
  27. * @throws org.springframework.mail.MailParseException  
  28.  
  29. * in case of failure when parsing a message  
  30.  
  31. * @throws org.springframework.mail.MailAuthenticationException  
  32.  
  33. * in case of authentication failure  
  34.  
  35. * @throws org.springframework.mail.MailSendException  
  36.  
  37. * in case of failure when sending a message  
  38.  
  39. */  
  40.   
  41. void send(SimpleMailMessage[] simpleMessages) throws MailException;   
  42.   
  43. }  
public interface MailSender { /*** Send the given simple mail message.

* @param simpleMessage the message to send

* @throws org.springframework.mail.MailParseException

* in case of failure when parsing the message

* @throws org.springframework.mail.MailAuthenticationException

* in case of authentication failure

* @throws org.springframework.mail.MailSendException

* in case of failure when sending the message

*/

void send(SimpleMailMessage simpleMessage) throws MailException;

/**

* Send the given array of simple mail messages in batch.

* @param simpleMessages the messages to send

* @throws org.springframework.mail.MailParseException

* in case of failure when parsing a message

* @throws org.springframework.mail.MailAuthenticationException

* in case of authentication failure

* @throws org.springframework.mail.MailSendException

* in case of failure when sending a message

*/

void send(SimpleMailMessage[] simpleMessages) throws MailException;

}

 

2 )一个简单邮件信息的实现类 SimpleMailMessage 。

3 ) JavaMailSender 接口,提供使用 JavaMail 中 MimeMessage ,代码如下:

Java代码 复制代码
  1. public interface MailSender { /*** Send the given simple mail message.  
  2.  
  3. * @param simpleMessage the message to send  
  4.  
  5. * @throws org.springframework.mail.MailParseException  
  6.  
  7. * in case of failure when parsing the message  
  8.  
  9. * @throws org.springframework.mail.MailAuthenticationException  
  10.  
  11. * in case of authentication failure  
  12.  
  13. * @throws org.springframework.mail.MailSendException  
  14.  
  15. * in case of failure when sending the message  
  16.  
  17. */  
  18.   
  19. void send(SimpleMailMessage simpleMessage) throws MailException;   
  20.   
  21. /**  
  22.  
  23. * Send the given array of simple mail messages in batch.  
  24.  
  25. * @param simpleMessages the messages to send  
  26.  
  27. * @throws org.springframework.mail.MailParseException  
  28.  
  29. * in case of failure when parsing a message  
  30.  
  31. * @throws org.springframework.mail.MailAuthenticationException  
  32.  
  33. * in case of authentication failure  
  34.  
  35. * @throws org.springframework.mail.MailSendException  
  36.  
  37. * in case of failure when sending a message  
  38.  
  39. */  
  40.   
  41. void send(SimpleMailMessage[] simpleMessages) throws MailException;   
  42.   
  43. }  
public interface MailSender { /*** Send the given simple mail message.

* @param simpleMessage the message to send

* @throws org.springframework.mail.MailParseException

* in case of failure when parsing the message

* @throws org.springframework.mail.MailAuthenticationException

* in case of authentication failure

* @throws org.springframework.mail.MailSendException

* in case of failure when sending the message

*/

void send(SimpleMailMessage simpleMessage) throws MailException;

/**

* Send the given array of simple mail messages in batch.

* @param simpleMessages the messages to send

* @throws org.springframework.mail.MailParseException

* in case of failure when parsing a message

* @throws org.springframework.mail.MailAuthenticationException

* in case of authentication failure

* @throws org.springframework.mail.MailSendException

* in case of failure when sending a message

*/

void send(SimpleMailMessage[] simpleMessages) throws MailException;

}

 


使用 JavaMail ,需要依赖 mail.jar 和 activation.jar 两个包。利用 Spring 的 IOC 优势,可以通过配置文件来配置邮件发送信息。对于 MailSender , Spring 提供了实现类 JavaMailSenderImpl ,可以如下配置 MailSender 信息。 

Xml代码 复制代码
  1. < bean id = "mailSender" class = "org.springframework.mail.javamail.JavaMailSenderImpl">    
  2.   
  3. < property name = "host" value = "smtp.126.com">  
  4.   
  5. < property name = "javaMailProperties" >  
  6.   
  7. < props >  
  8.   
  9. < prop key = "mail.smtp.auth" > true   
  10.   
  11. < prop key = "mail.smtp.timeout" > 20000   
  12.   
  13. < property name = "username" value = "kafka0102">  
  14.   
  15. < property name = "password" value = "****">  
< bean id = "mailSender" class = "org.springframework.mail.javamail.JavaMailSenderImpl"> 

< property name = "host" value = "smtp.126.com">

< property name = "javaMailProperties" >

< props >

< prop key = "mail.smtp.auth" > true

< prop key = "mail.smtp.timeout" > 20000

< property name = "username" value = "kafka0102">

< property name = "password" value = "****">

 

可以想到,如果是在 Service 中调用 mailSender ,可以通过 IOC 将 mailSender 注入到 Service 中。这里给出一个简单的使用演示:

 

Java代码 复制代码
  1. BeanFactory bf = new ClassPathXmlApplicationContext( "service-applicationContext.xml" );   
  2.   
  3. MailSender ms = (MailSender)bf.getBean( "mailSender" );   
  4.   
  5. SimpleMailMessage smm = new SimpleMailMessage();   
  6.   
  7. smm.setTo( "kafka0102@126.com" );   
  8.   
  9. smm.setFrom( "kafka0102@126.com" );   
  10.   
  11. smm.setSubject( "hello" );   
  12.   
  13. smm.setText( "I am you" );   
  14.   
  15. ms.send(smm);  
BeanFactory bf = new ClassPathXmlApplicationContext( "service-applicationContext.xml" );

MailSender ms = (MailSender)bf.getBean( "mailSender" );

SimpleMailMessage smm = new SimpleMailMessage();

smm.setTo( "kafka0102@126.com" );

smm.setFrom( "kafka0102@126.com" );

smm.setSubject( "hello" );

smm.setText( "I am you" );

ms.send(smm);

 

其中, SimpleMailMessage 也可以通过配置文件配置使用到的属性。 SimpleMailMessage 不能发送带有附件的邮件,这时就需要 JavaMailSender (它的实现类也是 JavaMailSenderImpl ), MimeMessagePreparator 的实现类和部分 JavaMail API 。 mailSender 的配置不变,添加一个实现 MimeMessagePreparator 的类 OneMimeMessagePreparator ,代码如下。

Java代码 复制代码
  1. import java.util.Date; import javax.activation.DataHandler;   
  2.   
  3. import javax.activation.FileDataSource;   
  4.   
  5. import javax.mail.Message;   
  6.   
  7. import javax.mail.Multipart;   
  8.   
  9. import javax.mail.internet.InternetAddress;   
  10.   
  11. import javax.mail.internet.MimeBodyPart;   
  12.   
  13. import javax.mail.internet.MimeMessage;   
  14.   
  15. import javax.mail.internet.MimeMultipart;   
  16.   
  17. import org.springframework.mail.javamail.MimeMessagePreparator;   
  18.   
  19. public class OneMimeMessagePreparator implements MimeMessagePreparator{   
  20.   
  21. public void prepare(MimeMessage mm) throws Exception {   
  22.   
  23. mm.setRecipient(Message.RecipientType. TO , new InternetAddress( "kafka0102@126.com" ));   
  24.   
  25. mm.setFrom( new InternetAddress( "kafka0102@126.com" ));   
  26.   
  27. mm.setSubject( "I am you" );   
  28.   
  29. Multipart mp = new MimeMultipart();   
  30.   
  31. MimeBodyPart mbp = new MimeBodyPart();   
  32.   
  33. mbp.setText( "hello kafka0102" );   
  34.   
  35. mp.addBodyPart(mbp);   
  36.   
  37. String[] files = new String[]{   
  38. "/home/kafka0102/Document/ 常用基础算法 .txt" ,   
  39.  "/home/kafka0102/Document/21164.html" };   
  40.   
  41. for (String f : files){   
  42.   
  43. MimeBodyPart mbpFile = new MimeBodyPart();   
  44.   
  45. FileDataSource fds = new FileDataSource(f);   
  46.   
  47. mbpFile.setDataHandler( new DataHandler(fds));   
  48.   
  49. mbpFile.setFileName(fds.getName());   
  50.   
  51. mp.addBodyPart(mbpFile);   
  52.   
  53. }   
  54.   
  55. mm.setContent(mp);   
  56.   
  57. mm.setSentDate( new Date());   
  58.   
  59. }   
  60.   
  61. }  
import java.util.Date; import javax.activation.DataHandler;

import javax.activation.FileDataSource;

import javax.mail.Message;

import javax.mail.Multipart;

import javax.mail.internet.InternetAddress;

import javax.mail.internet.MimeBodyPart;

import javax.mail.internet.MimeMessage;

import javax.mail.internet.MimeMultipart;

import org.springframework.mail.javamail.MimeMessagePreparator;

public class OneMimeMessagePreparator implements MimeMessagePreparator{

public void prepare(MimeMessage mm) throws Exception {

mm.setRecipient(Message.RecipientType. TO , new InternetAddress( "kafka0102@126.com" ));

mm.setFrom( new InternetAddress( "kafka0102@126.com" ));

mm.setSubject( "I am you" );

Multipart mp = new MimeMultipart();

MimeBodyPart mbp = new MimeBodyPart();

mbp.setText( "hello kafka0102" );

mp.addBodyPart(mbp);

String[] files = new String[]{
"/home/kafka0102/Document/ 常用基础算法 .txt" ,
 "/home/kafka0102/Document/21164.html" };

for (String f : files){

MimeBodyPart mbpFile = new MimeBodyPart();

FileDataSource fds = new FileDataSource(f);

mbpFile.setDataHandler( new DataHandler(fds));

mbpFile.setFileName(fds.getName());

mp.addBodyPart(mbpFile);

}

mm.setContent(mp);

mm.setSentDate( new Date());

}

}

 

OneMimeMessagePreparator 的功能就是配置 MimeMessage ,其中添加了两个附件。下面就是简单的使用方法。

 

Java代码 复制代码
  1. BeanFactory bf = new ClassPathXmlApplicationContext("service-applicationContext.xml");   
  2.   
  3. JavaMailSender ms = (JavaMailSender)bf.getBean("mailSender");   
  4.   
  5. ms.send(new OneMimeMessagePreparator());  
BeanFactory bf = new ClassPathXmlApplicationContext("service-applicationContext.xml");

JavaMailSender ms = (JavaMailSender)bf.getBean("mailSender");

ms.send(new OneMimeMessagePreparator());

 

 

 

分享到:
评论

相关推荐

    spring各种邮件发送

    在"spring各种邮件发送"这个主题中,我们将探讨Spring框架如何帮助开发者实现电子邮件的发送。邮件服务在许多应用场景中都十分常见,例如用户注册确认、密码重置提醒等。 首先,Spring框架提供了`JavaMailSender`...

    用spring发送邮件

    然后,我们创建一个邮件服务类,利用Spring的`JavaMailSender`接口发送邮件: ```java import org.springframework.beans.factory.annotation.Autowired; import org.springframework.mail.SimpleMailMessage; ...

    利用 spring mail 通过 gmail(SSL) 发邮件

    本教程将详细讲解如何利用Spring Mail通过Gmail的SSL(安全套接层)协议来发送邮件。 首先,我们需要在项目中引入Spring Mail的依赖。如果你使用的是Maven,可以在pom.xml文件中添加以下依赖: ```xml &lt;groupId&gt;...

    Spring Boot中利用JavaMailSender发送邮件的方法示例(附源码)

    在Spring Boot应用中,利用JavaMailSender发送邮件是一种常见的需求,Spring Boot的`spring-boot-starter-mail`模块为我们提供了方便的自动化配置。首先,我们需要在项目的`pom.xml`文件中引入这个依赖: ```xml ...

    Spring邮件发送

    这篇博客()将深入探讨如何利用Spring进行邮件发送。 首先,我们需要在项目中引入Spring的邮件支持依赖。如果你使用的是Maven,可以在pom.xml文件中添加以下依赖: ```xml &lt;groupId&gt;org.springframework ...

    spring定时发送邮件

    通过分析和运行这些文件,我们可以更深入地理解和学习如何在实际应用中利用Spring实现定时发送邮件的功能。 总结来说,Spring的定时任务和邮件服务功能为我们提供了强大的工具,能够自动化执行诸如发送邮件这样的...

    Spring 高效批量邮件发送

    在本话题中,我们将探讨“Spring高效批量邮件发送”这一技术点,这通常涉及到Spring框架中的邮件服务模块以及如何优化邮件发送的效率。 首先,Spring框架的MailSender接口是处理邮件发送的核心组件。它提供了send()...

    struts2+spring3.0+mybatis3.0.4集成的邮件发送实例(可上传附件)

    `SendService`会利用这些API创建`Session`,然后通过`Transport`对象发送邮件。 在生成HTML表格方面,`CreateHtmlTable`可能是用于生成邮件正文的HTML代码的工具类。这通常涉及字符串拼接或使用模板引擎,如...

    使用Spring发送邮件

    总的来说,使用Spring发送邮件是一个简单而强大的功能,它允许开发者轻松地集成邮件发送到各种业务逻辑中,提高应用的交互性和用户体验。通过理解和运用上述知识,你可以在自己的Java应用中实现高效、安全的邮件发送...

    spring JavaMailSenderImpl 发送邮件 java

    - **创建SimpleMailMessage对象**: SimpleMailMessage是Spring提供的一个预定义的邮件消息类,我们可以在这里设置邮件的发件人、收件人、主题和正文。 - **调用send方法发送邮件**: 使用JavaMailSenderImpl的send...

    spring线程发送邮件

    接下来,为了实现异步发送邮件,我们可以利用Spring的`@Async`注解和`TaskExecutor`。首先,我们需要创建一个`@Configuration`类来配置`TaskExecutor`: ```java @Configuration @EnableAsync public class ...

    Spring发送邮件简单实例

    标题中的"Spring发送邮件简单实例"表明我们即将探讨的是如何使用Spring框架来实现电子邮件的发送功能。Spring框架提供了丰富的工具类和接口,使得在Java应用中发送邮件变得相当简便。这个实例可能是通过...

    spring+velocity发送邮件

    在本场景中,我们将利用Spring来管理JavaMail Sender对象,以便于发送邮件。 #### Velocity模板引擎 Velocity是一个基于Java的模板引擎,它允许开发者通过简单的模板语言来生成HTML网页、XML数据或者普通的文本。在...

    spring发送邮件

    从提供的文件列表中,我们可以推测`spring发送邮件.md`可能是一个Markdown格式的文档,详细讲解了如何配置和使用Spring发送邮件,而`1.png`、`2.png`和`3.png`可能是相关的截图,帮助读者更好地理解和学习这一过程。...

    Spring mail发送邮件实例

    通过以上步骤,我们可以利用 Spring Mail 模块轻松地实现邮件的发送功能。此外,Spring Mail 还提供了更为高级的功能,比如发送 HTML 格式的邮件、附件等,这些都是在实际应用中非常有用的功能。

    手把手教你 ,spring定时发送邮件

    本教程将聚焦于Spring的一个实用特性——定时任务,特别是如何利用Spring集成JavaMailSender来实现定时发送邮件。我们将探讨以下知识点: 1. **Spring定时任务(Scheduled Tasks)** Spring通过`@Scheduled`注解和`...

    spring邮件服务(java邮件发送)

    本教程将深入探讨如何利用Spring框架的邮件服务模块来实现Java邮件发送功能,包括发送多附件、多人发送、抄送和暗送。 首先,`SpringMailUtil.java`这个文件很可能是邮件服务的核心工具类,它封装了邮件发送的相关...

    java发送邮件(两种方式-springcloud方式+静态调用方式).zip

    在Spring Cloud框架中,我们可以利用`spring-cloud-starter-mail`模块来发送邮件。首先,需要在`pom.xml`文件中引入依赖: ```xml &lt;groupId&gt;org.springframework.cloud &lt;artifactId&gt;spring-cloud-starter-mail ...

    Spring整合Quartz定时发送邮件

    这样的整合不仅提供了灵活的定时任务管理,还利用了Spring的依赖注入和管理能力,简化了邮件服务的配置和使用。通过源码分析和工具的使用,开发者可以更好地理解和定制这个过程,满足各种复杂的业务需求。

Global site tag (gtag.js) - Google Analytics