Spring Java 发送各种邮件

Spring邮件抽象层的主要包为 org.springframework.mail 。它包括了发送电子邮件的主要接口 MailSender ,和 值对象 SimpleMailMessage ,它封装了简单邮件的属性如 from to , cc subject , text 。 包里还包含一棵以 MailException 为根的checked Exception继承树,它们提供了对底层邮件系统异常的高级别抽象。 要获得关于邮件异常层次的更丰富的信息,请参考Javadocs。

为了使用JavaMail中的一些特色, 比如MIME类型的信件, Spring提供了MailSender的一个子接口, 即org.springframework.mail.javamail.JavaMailSender。Spring还提供了一个回调接口org.springframework.mail.javamail.MimeMessagePreparator, 用于准备JavaMail的MIME信件。

这里简单的介绍了如何使用spring发送各种形式的邮件以及配置。

1、在src目录下建立mail.properties文件里边包含一下内容

mail.host=smtp.exmail.qq.com(建议使用这个,如果使用smtp.qq.com可能会出现安全认证的问题
mail.username=你的邮箱名
mail.password=你的邮箱密码
mail.from=发送方的邮箱

2、使用spring配置


   
   

   
   

 
    
      
    
    
      
        
     
       
            
      
        
                
       
       
         classpath:mail.properties 
         
            
      
        
        
     
       
    
    
      
    
    
      
        
     
       
            
      
      
       
       ${mail.from}
      
        
        
     
       
        
     
       
    
    
      
    
    
      
    
    
      
        
     
       
        
     
       
        
     
       
        
     
       
        
     
       
            
      
        
                
       
         
                
       
       
         true 
         
                
       
         
                
       
       
         true 
         
                
       
       
                
       
       
         0 
       
            
      
        
        
     
       
    
    
      

   
   
3、发送简单的邮件

package mail;

import javax.mail.MessagingException;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.mail.MailSender;
import org.springframework.mail.SimpleMailMessage;

/**
 * 本类测试邮件发送Html形式
 * 
 * @author Eternity_._
 * 
 */
public class SingleMailSend {


	static ApplicationContext actx = new ClassPathXmlApplicationContext(
			"applicationContext.xml");
	static MailSender sender = (MailSender) actx.getBean("mailSender");
	static SimpleMailMessage mailMessage = (SimpleMailMessage) actx.getBean("mailMessage");
	public static void main(String args[]) throws MessagingException {		
		mailMessage.setSubject("你好");
		mailMessage.setText("这个是一个通过Spring框架来发送邮件的小程序");
		mailMessage.setTo("9197****1@qq.com");
		sender.send(mailMessage);
	}
}
4、发送带有图片的邮件,以嵌入HTML的方式

package springmail;

import java.io.File;

import javax.mail.MessagingException;
import javax.mail.internet.MimeMessage;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.core.io.FileSystemResource;
import org.springframework.mail.javamail.JavaMailSenderImpl;
import org.springframework.mail.javamail.MimeMessageHelper;

public class SpringAttachedImageMail {

	public static void main(String[] args) throws MessagingException {

		ApplicationContext ctx = new ClassPathXmlApplicationContext(
				"applicationContext.xml");
		JavaMailSenderImpl sender = (JavaMailSenderImpl) ctx
				.getBean("mailSender");
		MimeMessage mailMessage = sender.createMimeMessage();
		MimeMessageHelper messageHelper = new MimeMessageHelper(mailMessage,true);
		messageHelper.setFrom("9197****1@qq.com");
		messageHelper.setTo("9197****1@qq.com");

		messageHelper.setSubject("测试邮件中嵌套图片!!");
		// true 表示启动HTML格式的邮件
		messageHelper.setText(
				"

hello!!spring image html mail

" +"baidu" + "", true); FileSystemResource img = new FileSystemResource(new File("单.png")); messageHelper.addInline("image", img);//跟cid一致 sender.send(mailMessage); System.out.println("邮件发送成功..."); } }
5、发送带有附件的邮件

package springmail;

import java.io.File;

import javax.mail.MessagingException;
import javax.mail.internet.MimeMessage;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.core.io.FileSystemResource;
import org.springframework.mail.javamail.JavaMailSenderImpl;
import org.springframework.mail.javamail.MimeMessageHelper;

public class SpringAttachedImageMail {

	public static void main(String[] args) throws MessagingException {

		ApplicationContext ctx = new ClassPathXmlApplicationContext(
				"applicationContext.xml");
		JavaMailSenderImpl sender = (JavaMailSenderImpl) ctx
				.getBean("mailSender");
		MimeMessage mailMessage = sender.createMimeMessage();
		MimeMessageHelper messageHelper = new MimeMessageHelper(mailMessage,true);
		messageHelper.setFrom("9197****1@qq.com");
		messageHelper.setTo("9197****1@qq.com");

		messageHelper.setSubject("测试邮件中嵌套图片!!");
		// true 表示启动HTML格式的邮件
		messageHelper.setText(
				"

hello!!spring image html mail

" +"baidu" + "", true); FileSystemResource img = new FileSystemResource(new File("单.png")); messageHelper.addAttachment("单.png", file);//添加到附件 sender.send(mailMessage); System.out.println("邮件发送成功..."); } }

6、如果使用的是QQ邮箱的话建议把这几项都选上,不然可能调试不能通过。



附:所需的jar:http://download.csdn.net/detail/eternity0_0/7179617

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值