JavaMail邮件发送-发送带附件的邮件

之前已经看到,如果消息包指定了他们之间的关系,增加一个文件进去,邮箱就会显示成普通附件

但是那毕竟不是附件,附件就是附件不能含糊

 

其实增加附件很简单

指定消息包内元素为混合关系

增加附件并指定附件的名称

 

代码如下:

Java代码  
  1. package com.mail;   
  2. import java.util.Date;   
  3. import java.util.Properties;   
  4. import javax.activation.DataHandler;   
  5. import javax.activation.FileDataSource;   
  6. import javax.mail.Message;   
  7. import javax.mail.Session;   
  8. import javax.mail.Transport;   
  9. import javax.mail.internet.InternetAddress;   
  10. import javax.mail.internet.MimeBodyPart;   
  11. import javax.mail.internet.MimeMessage;   
  12. import javax.mail.internet.MimeMultipart;   
  13. import javax.mail.internet.MimeUtility;   
  14. public class Html_File_InnerFile {   
  15.     public static void main(String[] args) throws Exception {   
  16.         Properties props = new Properties();   
  17.         props.put( "mail.smtp.host ""smtp.163.com ");   
  18.         props.put("mail.smtp.auth""true");   
  19.         Session session = Session.getInstance(props);   
  20.         Message message = new MimeMessage(session);   
  21.         InternetAddress from = new InternetAddress("[email protected]");   
  22.         from.setPersonal(MimeUtility.encodeText("风中落叶"));   
  23.         message.setFrom(from);   
  24.         InternetAddress to = new InternetAddress("[email protected]");   
  25.         message.setRecipient(Message.RecipientType.TO, to);   
  26.         message.setSubject(MimeUtility.encodeText("强哥邀请,谁敢不从!"));   
  27.         message.setSentDate(new Date());   
  28.         MimeMultipart msgMultipart = new MimeMultipart("mixed");// 指定为混合关系   
  29.         message.setContent(msgMultipart);   
  30.         // 邮件内容   
  31.         MimeBodyPart htmlPart = new MimeBodyPart();   
  32.         htmlPart.setContent(   
  33.                         ""  
  34.                                 + "  
  35.                                 + "100px;width: 200px;' align='center'>"  
  36.                                 + "这是测试邮件,请勿回复" + "
",   
  •                         "text/html;charset=UTF-8");   
  •         // TODO 组装的顺序非常重要,一定要先组装文本域,再组装文件   
  •         msgMultipart.addBodyPart(htmlPart);   
  •         // 组装附件   
  •         MimeBodyPart file = new MimeBodyPart();   
  •         FileDataSource file_datasource = new FileDataSource("D:\\img201008031058340.zip");   
  •         DataHandler dh = new DataHandler(file_datasource);   
  •         file.setDataHandler(dh);   
  •         // 附件区别内嵌内容的一个特点是有文件名,为防止中文乱码要编码   
  •         file.setFileName(MimeUtility.encodeText(dh.getName()));   
  •         msgMultipart.addBodyPart(file);        
  •         message.saveChanges();   
  •         Transport transport = session.getTransport("smtp");   
  •         transport.connect("smtp.163.com"25"test20120711120200""test123456");   
  •         transport.sendMessage(message, message.getAllRecipients());   
  •         transport.close();   
  •         System.out.println("发送完毕");   
  •     }   
  • }  
  • package com.mail;
    import java.util.Date;
    import java.util.Properties;
    import javax.activation.DataHandler;
    import javax.activation.FileDataSource;
    import javax.mail.Message;
    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;
    public class Html_File_InnerFile {
    	public static void main(String[] args) throws Exception {
    		Properties props = new Properties();
    		props.put( "mail.smtp.host ", "smtp.163.com ");
    		props.put("mail.smtp.auth", "true");
    		Session session = Session.getInstance(props);
    		Message message = new MimeMessage(session);
    		InternetAddress from = new InternetAddress("[email protected]");
    		from.setPersonal(MimeUtility.encodeText("风中落叶"));
    		message.setFrom(from);
    		InternetAddress to = new InternetAddress("[email protected]");
    		message.setRecipient(Message.RecipientType.TO, to);
    		message.setSubject(MimeUtility.encodeText("强哥邀请,谁敢不从!"));
    		message.setSentDate(new Date());
    		MimeMultipart msgMultipart = new MimeMultipart("mixed");// 指定为混合关系
    		message.setContent(msgMultipart);
    		// 邮件内容
    		MimeBodyPart htmlPart = new MimeBodyPart();
    		htmlPart.setContent(
    						""
    								+ "
    " + "这是测试邮件,请勿回复" + "
    ", "text/html;charset=UTF-8"); // TODO 组装的顺序非常重要,一定要先组装文本域,再组装文件 msgMultipart.addBodyPart(htmlPart); // 组装附件 MimeBodyPart file = new MimeBodyPart(); FileDataSource file_datasource = new FileDataSource("D:\\img201008031058340.zip"); DataHandler dh = new DataHandler(file_datasource); file.setDataHandler(dh); // 附件区别内嵌内容的一个特点是有文件名,为防止中文乱码要编码 file.setFileName(MimeUtility.encodeText(dh.getName())); msgMultipart.addBodyPart(file); message.saveChanges(); Transport transport = session.getTransport("smtp"); transport.connect("smtp.163.com", 25, "test20120711120200", "test123456"); transport.sendMessage(message, message.getAllRecipients()); transport.close(); System.out.println("发送完毕"); } }

      

    主要组装元素的时候一定要先组装邮件内容再组装附件

     无论在 客户端工具还是邮箱,都是提示附件,邮件还是带背景图片的

     

    JavaMail邮件发送-发送带附件的邮件_第1张图片

     

     

     附件名称是你自己指定的

     

    最后:

    由于近期大量小网站在未经同意情况下使用文章,现将我的博客地址公布如下,请您到ITEYE网站看原创,谢谢!

    http://cuisuqiang.iteye.com/ !

    你可能感兴趣的:(java)