发送邮件sendEmailUtil

package com.htht.qht.util;
/**   
 *发送邮件需要使用的基本信息 
 *  
 */    
import java.io.File;
import java.util.List;
import java.util.Properties;
public class MailSenderInfo {    
    // 发送邮件的服务器的IP和端口    
    private String mailServerHost;    
    private String mailServerPort = "25";    
    // 邮件发送者的地址    
    private String fromAddress;    
    // 邮件接收者的地址    收件人 多个收件人以,分隔 
    private String toAddress;    
    // 登陆邮件发送服务器的用户名和密    
    private String userName;    
    private String password;    
    // 是否需要身份验证    
    private boolean validate = false;    
    // 邮件主题    
    private String subject;    
    // 邮件的文本内容    
    private String content;    
    // 邮件附件的文件名    
    private String[] attachFileNames;      
    //附件集  
    private List<File> attachmentlist ;
    /**   
      * 获得邮件会话属性   
      */    
    public Properties getProperties(){    
      Properties p = new Properties();    
      p.put("mail.smtp.host", this.mailServerHost);    
      p.put("mail.smtp.port", this.mailServerPort);  
      p.put("mail.smtp.auth", validate ? "true" : "false");    
      return p;    
    }    
    public String getMailServerHost() {    
      return mailServerHost;    
    }    
    public void setMailServerHost(String mailServerHost) {    
      this.mailServerHost = mailServerHost;    
    }   
    public String getMailServerPort() {    
      return mailServerPort;    
    }   
    public void setMailServerPort(String mailServerPort) {    
      this.mailServerPort = mailServerPort;    
    }   
    public boolean isValidate() {    
      return validate;    
    }   
    public void setValidate(boolean validate) {    
      this.validate = validate;    
    }   
    public String[] getAttachFileNames() {    
      return attachFileNames;    
    }   
    public void setAttachFileNames(String[] fileNames) {    
      this.attachFileNames = fileNames;    
    }   
    public String getFromAddress() {    
      return fromAddress;    
    }    
    public void setFromAddress(String fromAddress) {    
      this.fromAddress = fromAddress;    
    }   
    public String getPassword() {    
      return password;    
    }   
    public void setPassword(String password) {    
      this.password = password;    
    }   
    public String getToAddress() {    
      return toAddress;    
    }    
    public void setToAddress(String toAddress) {    
      this.toAddress = toAddress;    
    }    
    public String getUserName() {    
      return userName;    
    }   
    public void setUserName(String userName) {    
      this.userName = userName;    
    }   
    public String getSubject() {    
      return subject;    
    }   
    public void setSubject(String subject) {    
      this.subject = subject;    
    }   
    public String getContent() {    
      return content;    
    }   
    public void setContent(String textContent) {    
      this.content = textContent;    
    }
public List<File> getAttachmentlist() {
return attachmentlist;
}
public void setAttachmentlist(List<File> attachmentlist) {
this.attachmentlist = attachmentlist;
}  
    
    

}   



package com.htht.qht.util;
/**   
 * 邮件发送器   
 */ 
import java.io.File;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Properties;


import javax.activation.DataHandler;
import javax.activation.FileDataSource;
import javax.mail.Address;
import javax.mail.BodyPart;
import javax.mail.Message;
import javax.mail.Multipart;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
import javax.mail.internet.MimeUtility;


import com.htht.qht.base.util.FileIOUtil;
import com.htht.qht.base.util.PropertiesUtil;


    
public class SimpleMailSender   {    
/**   
  * 以文本格式发送邮件    
  * @param mailInfo 待发送的邮件的信息   
  */    
public boolean sendTextMail(MailSenderInfo mailInfo) throws Exception{    
      // 判断是否需要身份认证    
      MyAuthenticator authenticator = null;    
      Properties pro = mailInfo.getProperties();   
      if (mailInfo.isValidate()) {    
      // 如果需要身份认证,则创建一个密码验证器    
        authenticator = new MyAuthenticator(mailInfo.getUserName(), mailInfo.getPassword());    
      }   
      // 根据邮件会话属性和密码验证器构造一个发送邮件的session    
      Session sendMailSession = Session.getDefaultInstance(pro,authenticator);  
      
      // 根据session创建一个邮件消息    
      Message mailMessage = new MimeMessage(sendMailSession);    
      // 创建邮件发送者地址    
      Address from = new InternetAddress(mailInfo.getFromAddress());    
      // 设置邮件消息的发送者    
      mailMessage.setFrom(from);    
      // 创建邮件的接收者地址,并设置到邮件消息中    
//       Address to = new InternetAddress(mailInfo.getToAddress());
//       mailMessage.setRecipient(Message.RecipientType.TO,toAddr);  
      // 设置收件人地址(多个邮件地址)  
      InternetAddress[] toAddr = InternetAddress.parse(mailInfo.getToAddress()); 
      mailMessage.addRecipients(Message.RecipientType.TO,toAddr);  
      // 设置邮件消息的主题    
      sun.misc.BASE64Encoder enc = new sun.misc.BASE64Encoder();
//       mailMessage.setSubject("=?utf-8?B?"+enc.encode(mailInfo.getSubject().getBytes())+"?=");
      mailMessage.setSubject(MimeUtility.encodeText(mailInfo.getSubject(),MimeUtility.mimeCharset("utf-8"), null)); 
      // 设置邮件消息发送的时间    
      mailMessage.setSentDate(new Date());    
      // 设置邮件消息的主要内容    
      String mailContent = mailInfo.getContent();   
      MimeBodyPart contentPart = new MimeBodyPart();  
      contentPart.setText(mailContent);     
      //发送附件
      Multipart multipart = new MimeMultipart();   
      multipart.addBodyPart(contentPart);  
    //设置附件  
      if(mailInfo.getAttachmentlist()!=null && mailInfo.getAttachmentlist().size()>0){  
          for(int i = 0 ; i < mailInfo.getAttachmentlist().size();i++){  
              MimeBodyPart attachmentPart = new MimeBodyPart();  
                
              FileDataSource source = new FileDataSource(mailInfo.getAttachmentlist().get(i));  
              attachmentPart.setDataHandler(new DataHandler(source));  
              attachmentPart.setFileName(MimeUtility.encodeText(mailInfo.getAttachmentlist().get(i).getName(),MimeUtility.mimeCharset("utf-8"), null));
//               attachmentPart.setFileName("=?utf-8?B?"+enc.encode(mailInfo.getAttachmentlist().get(i).getName().getBytes())+"?=");
              multipart.addBodyPart(attachmentPart);  
          }   
      }  
      mailMessage.setContent(multipart);  
      // 发送邮件    
      Transport.send(mailMessage);  
      return true;    
    }    
       
    /**   
      * 以HTML格式发送邮件   
      * @param mailInfo 待发送的邮件信息   
      */    
    public  boolean sendHtmlMail(MailSenderInfo mailInfo) throws Exception{    
      // 判断是否需要身份认证    
      MyAuthenticator authenticator = null;   
      Properties pro = mailInfo.getProperties();   
      //如果需要身份认证,则创建一个密码验证器     
      if (mailInfo.isValidate()) {    
        authenticator = new MyAuthenticator(mailInfo.getUserName(), mailInfo.getPassword());   
      }    
      // 根据邮件会话属性和密码验证器构造一个发送邮件的session    
      Session sendMailSession = Session.getDefaultInstance(pro,authenticator);    
      
      
      // 根据session创建一个邮件消息    
      MimeMessage mailMessage = new MimeMessage(sendMailSession);    
      // 创建邮件发送者地址    
      Address from = new InternetAddress(mailInfo.getFromAddress());    
      // 设置邮件消息的发送者    
    
      mailMessage.setFrom(from);    
      // 创建邮件的接收者地址,并设置到邮件消息中    
   /*   Address to = new InternetAddress(mailInfo.getToAddress());    
      // Message.RecipientType.TO属性表示接收者的类型为TO    
      mailMessage.setRecipient(Message.RecipientType.TO,to);  */  
      // 设置收件人地址(多个邮件地址)  
      InternetAddress[] toAddr = InternetAddress.parse(mailInfo.getToAddress()); 
      mailMessage.addRecipients(Message.RecipientType.TO,toAddr);
      
      
      // 设置邮件消息发送的时间    
      mailMessage.setSentDate(new Date());    
     
      MimeBodyPart contentPart = new MimeBodyPart();       
      // 设置邮件消息的主要内容    
      String mailContent = mailInfo.getContent();    
//      contentPart.setText(mailContent, "utf-8");     
      contentPart.setContent(mailInfo.getContent(), "text/html; charset=utf-8");     
      //发送附件
      Multipart multipart = new MimeMultipart();   
      multipart.addBodyPart(contentPart);  
    //设置附件  
      if(mailInfo.getAttachmentlist()!=null && mailInfo.getAttachmentlist().size()>0){  
          for(int i = 0 ; i < mailInfo.getAttachmentlist().size();i++){  
              MimeBodyPart attachmentPart = new MimeBodyPart();  
                
              FileDataSource source = new FileDataSource(mailInfo.getAttachmentlist().get(i));  
              attachmentPart.setDataHandler(new DataHandler(source));  
//              attachmentPart.setFileName(MimeUtility.encodeWord(attachmentlist.get(i).getName(), "gb2312", null));
              sun.misc.BASE64Encoder enc = new sun.misc.BASE64Encoder();
              attachmentPart.setFileName(MimeUtility.encodeText(mailInfo.getAttachmentlist().get(i).getName(),MimeUtility.mimeCharset("utf-8"), null));
//              attachmentPart.setFileName("=?utf-8?B?"+enc.encode(mailInfo.getAttachmentlist().get(i).getName().getBytes())+"?=");
              multipart.addBodyPart(attachmentPart);  
          }   
      }  
//      // MiniMultipart类是一个容器类,包含MimeBodyPart类型的对象    
//      Multipart mainPart = new MimeMultipart();    
//      // 创建一个包含HTML内容的MimeBodyPart    
//      BodyPart html = new MimeBodyPart();    
//      // 设置HTML内容    
//      html.setContent(mailInfo.getContent(), "text/html; charset=utf-8");    
//      mainPart.addBodyPart(html);  
      // 将MiniMultipart对象设置为邮件内容    
//      mailMessage.setContent(mainPart); 
      sun.misc.BASE64Encoder enc = new sun.misc.BASE64Encoder();
      // 设置邮件消息的主题    
      mailMessage.setSubject(MimeUtility.encodeText(mailInfo.getSubject(),MimeUtility.mimeCharset("utf-8"), null)); 
//      mailMessage.setSubject("=?gbk?B?"+enc.encode(mailInfo.getSubject().getBytes())+"?=");
      mailMessage.setContent(multipart);  
      // 发送邮件    
      Transport.send(mailMessage); 
      return true;    
    }    
 
    /*
     * @title:标题
     * @content:内容
     * @type:类型,0:html格式1:文本格式;
     * @tomail:接收的邮箱
     */
    public static boolean sendMail(String title,String content,String type,String tomail,List<File> attachmentlist) throws Exception{   
   
    //这个类主要是设置邮件   
     MailSenderInfo mailInfo = new MailSenderInfo();    
     mailInfo.setMailServerHost(PropertiesUtil.getInstance().getProperties("conf/address.properties").getProperty( "smtpserver"));    
     mailInfo.setMailServerPort(PropertiesUtil.getInstance().getProperties("conf/address.properties").getProperty( "smtport"));    
     mailInfo.setValidate(true);    
     mailInfo.setUserName((PropertiesUtil.getInstance().getProperties("conf/address.properties").getProperty( "mailname")).trim());    
     mailInfo.setPassword((PropertiesUtil.getInstance().getProperties("conf/address.properties").getProperty( "mailpass")).trim());//您的邮箱密码    
     mailInfo.setFromAddress((PropertiesUtil.getInstance().getProperties("conf/address.properties").getProperty( "mailname")).trim());    
     mailInfo.setToAddress(tomail);    
     mailInfo.setSubject(title);    
     mailInfo.setContent(content);    
     mailInfo.setAttachmentlist(attachmentlist);
     //这个类主要来发送邮件   
  
     SimpleMailSender sms = new SimpleMailSender();   
     
     if("1".equals(type)){
    return sms.sendTextMail(mailInfo);//发送文体格式    
     }else if("0".equals(type)){
    return sms.sendHtmlMail(mailInfo);//发送html格式   
     }
     return false;
      
   }
    /**
     * @param SMTP  邮件服务器
     * @param PORT 端口
     * @param EMAIL 本邮箱账号
     * @param PAW 本邮箱密码
     * @param toEMAIL 对方箱账号
     * @param TITLE 标题
     * @param CONTENT 内容
     * @param TYPE 0:HTML格式1:文本格式;
     */
    public static void sendEmail(String SMTP, String PORT, String EMAIL, String PAW, String toEMAIL, String TITLE, String CONTENT, String TYPE) throws Exception{ 
   
        //这个类主要是设置邮件   
     MailSenderInfo mailInfo = new MailSenderInfo();
     
     mailInfo.setMailServerHost(SMTP);    
     mailInfo.setMailServerPort(PORT);    
     mailInfo.setValidate(true);    
     mailInfo.setUserName(EMAIL);    
     mailInfo.setPassword(PAW);   
     mailInfo.setFromAddress(EMAIL);    
     mailInfo.setToAddress(toEMAIL);    
     mailInfo.setSubject(TITLE);    
     mailInfo.setContent(CONTENT); 
     //这个类主要来发送邮件   
  
     SimpleMailSender sms = new SimpleMailSender();
     
    if("1".equals(TYPE)){
    sms.sendTextMail(mailInfo);
    }else{
    sms.sendHtmlMail(mailInfo);
    }
     
   }
    
    
    public static void main(String[] args) throws Exception{   
        //这个类主要是设置邮件   
//      MailSenderInfo mailInfo = new MailSenderInfo();    
//      mailInfo.setMailServerHost("smtp.n***ch.net");    
//      mailInfo.setMailServerPort("25");    
//      mailInfo.setValidate(true);    
//      mailInfo.setUserName("admin@ne*ch.net");    
//      mailInfo.setPassword("Qwers*_");//您的邮箱密码    
//      mailInfo.setFromAddress("admin@n*p*h.net");    
//      mailInfo.setToAddress("1599**1@qq.com");    
//      mailInfo.setSubject("设置邮箱标题");    
//      mailInfo.setContent("设置邮箱内容");    
//      //这个类主要来发送邮件   
//   
//      SimpleMailSender sms = new SimpleMailSender();   
//      sms.sendTextMail(mailInfo);//发送文体格式    
     //sms.sendHtmlMail(mailInfo);//发送html格式    
      File file = FileIOUtil.getFileByHttp("http://119.254.114.18071/global/group1/M00/0C/45/wKgATVdMAleEYRsKAAAAAPMWXBA117.doc", "D:\\", "简历啊");
      List list=new ArrayList();  
          list.add(file); 
          String body = "<h4>HTML 格式的邮件测试!!!</h4> " +  
"<a href=\"http://haolloyin.blog.51cto.com\" > 青蛙</a>";  
    SimpleMailSender.sendMail("abc", body
    , "0", "xixi@163.com",list);
   }
    
}   

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值