JavaWeb学习总结(五十二)——使用JavaMail创建邮件和发送邮件
JavaWeb學(xué)習(xí)總結(jié)(五十二)——使用JavaMail創(chuàng)建郵件和發(fā)送郵件
一、RFC882文檔簡單說明
RFC882文檔規(guī)定了如何編寫一封簡單的郵件(純文本郵件),一封簡單的郵件包含郵件頭和郵件體兩個部分,郵件頭和郵件體之間使用空行分隔。
郵件頭包含的內(nèi)容有:
郵件體指的就是郵件的具體內(nèi)容。
二、MIME協(xié)議簡單介紹
在我們的實際開發(fā)當(dāng)中,一封郵件既可能包含圖片,又可能包含有附件,在這樣的情況下,RFC882文檔規(guī)定的郵件格式就無法滿足要求了。
MIME協(xié)議是對RFC822文檔的升級和補充,它描述了如何生產(chǎn)一封復(fù)雜的郵件。通常我們把MIME協(xié)議描述的郵件稱之為MIME郵件。MIME協(xié)議描述的數(shù)據(jù)稱之為MIME消息。
對于一封復(fù)雜郵件,如果包含了多個不同的數(shù)據(jù),MIME協(xié)議規(guī)定了要使用分隔線對多段數(shù)據(jù)進行分隔,并使用Content-Type頭字段對數(shù)據(jù)的類型、以及多個數(shù)據(jù)之間的關(guān)系進行描述。
三、使用JavaMail創(chuàng)建郵件和發(fā)送郵件
JavaMail創(chuàng)建的郵件是基于MIME協(xié)議的。因此可以使用JavaMail創(chuàng)建出包含圖片,包含附件的復(fù)雜郵件。
3.1、JavaMail API的簡單介紹
3.2、創(chuàng)建郵件發(fā)送測試項目
3.3、發(fā)送一封只包含文本的簡單郵件
1 package me.gacl.main;2 3 import java.util.Properties;4 import javax.mail.Message;5 import javax.mail.Session;6 import javax.mail.Transport;7 import javax.mail.internet.InternetAddress;8 import javax.mail.internet.MimeMessage;9 10 /** 11 * @ClassName: Sendmail 12 * @Description: 發(fā)送Email 13 * @author: 孤傲蒼狼 14 * @date: 2015-1-12 下午9:42:56 15 * 16 */ 17 public class Sendmail { 18 19 /** 20 * @param args 21 * @throws Exception 22 */ 23 public static void main(String[] args) throws Exception { 24 25 Properties prop = new Properties(); 26 prop.setProperty("mail.host", "smtp.sohu.com"); 27 prop.setProperty("mail.transport.protocol", "smtp"); 28 prop.setProperty("mail.smtp.auth", "true"); 29 //使用JavaMail發(fā)送郵件的5個步驟 30 //1、創(chuàng)建session 31 Session session = Session.getInstance(prop); 32 //開啟Session的debug模式,這樣就可以查看到程序發(fā)送Email的運行狀態(tài) 33 session.setDebug(true); 34 //2、通過session得到transport對象 35 Transport ts = session.getTransport(); 36 //3、使用郵箱的用戶名和密碼連上郵件服務(wù)器,發(fā)送郵件時,發(fā)件人需要提交郵箱的用戶名和密碼給smtp服務(wù)器,用戶名和密碼都通過驗證之后才能夠正常發(fā)送郵件給收件人。 37 ts.connect("smtp.sohu.com", "gacl", "郵箱密碼"); 38 //4、創(chuàng)建郵件 39 Message message = createSimpleMail(session); 40 //5、發(fā)送郵件 41 ts.sendMessage(message, message.getAllRecipients()); 42 ts.close(); 43 } 44 45 /** 46 * @Method: createSimpleMail 47 * @Description: 創(chuàng)建一封只包含文本的郵件 48 * @Anthor:孤傲蒼狼 49 * 50 * @param session 51 * @return 52 * @throws Exception 53 */ 54 public static MimeMessage createSimpleMail(Session session) 55 throws Exception { 56 //創(chuàng)建郵件對象 57 MimeMessage message = new MimeMessage(session); 58 //指明郵件的發(fā)件人 59 message.setFrom(new InternetAddress("gacl@sohu.com")); 60 //指明郵件的收件人,現(xiàn)在發(fā)件人和收件人是一樣的,那就是自己給自己發(fā) 61 message.setRecipient(Message.RecipientType.TO, new InternetAddress("gacl@sohu.com")); 62 //郵件的標題 63 message.setSubject("只包含文本的簡單郵件"); 64 //郵件的文本內(nèi)容 65 message.setContent("你好啊!", "text/html;charset=UTF-8"); 66 //返回創(chuàng)建好的郵件對象 67 return message; 68 } 69 }3.4、發(fā)送包含內(nèi)嵌圖片的郵件
1 package me.gacl.main;2 3 import java.io.FileOutputStream;4 import java.util.Properties;5 6 import javax.activation.DataHandler;7 import javax.activation.FileDataSource;8 import javax.mail.Message;9 import javax.mail.Session; 10 import javax.mail.Transport; 11 import javax.mail.internet.InternetAddress; 12 import javax.mail.internet.MimeBodyPart; 13 import javax.mail.internet.MimeMessage; 14 import javax.mail.internet.MimeMultipart; 15 16 /** 17 * @ClassName: Sendmail 18 * @Description: 發(fā)送Email 19 * @author: 孤傲蒼狼 20 * @date: 2015-1-12 下午9:42:56 21 * 22 */ 23 public class Sendmail { 24 25 /** 26 * @param args 27 * @throws Exception 28 */ 29 public static void main(String[] args) throws Exception { 30 31 Properties prop = new Properties(); 32 prop.setProperty("mail.host", "smtp.sohu.com"); 33 prop.setProperty("mail.transport.protocol", "smtp"); 34 prop.setProperty("mail.smtp.auth", "true"); 35 //使用JavaMail發(fā)送郵件的5個步驟 36 //1、創(chuàng)建session 37 Session session = Session.getInstance(prop); 38 //開啟Session的debug模式,這樣就可以查看到程序發(fā)送Email的運行狀態(tài) 39 session.setDebug(true); 40 //2、通過session得到transport對象 41 Transport ts = session.getTransport(); 42 //3、連上郵件服務(wù)器,需要發(fā)件人提供郵箱的用戶名和密碼進行驗證 43 ts.connect("smtp.sohu.com", "gacl", "郵箱密碼"); 44 //4、創(chuàng)建郵件 45 Message message = createImageMail(session); 46 //5、發(fā)送郵件 47 ts.sendMessage(message, message.getAllRecipients()); 48 ts.close(); 49 } 50 51 /** 52 * @Method: createImageMail 53 * @Description: 生成一封郵件正文帶圖片的郵件 54 * @Anthor:孤傲蒼狼 55 * 56 * @param session 57 * @return 58 * @throws Exception 59 */ 60 public static MimeMessage createImageMail(Session session) throws Exception { 61 //創(chuàng)建郵件 62 MimeMessage message = new MimeMessage(session); 63 // 設(shè)置郵件的基本信息 64 //發(fā)件人 65 message.setFrom(new InternetAddress("gacl@sohu.com")); 66 //收件人 67 message.setRecipient(Message.RecipientType.TO, new InternetAddress("xdp_gacl@sina.cn")); 68 //郵件標題 69 message.setSubject("帶圖片的郵件"); 70 71 // 準備郵件數(shù)據(jù) 72 // 準備郵件正文數(shù)據(jù) 73 MimeBodyPart text = new MimeBodyPart(); 74 text.setContent("這是一封郵件正文帶圖片<img src='cid:xxx.jpg'>的郵件", "text/html;charset=UTF-8"); 75 // 準備圖片數(shù)據(jù) 76 MimeBodyPart image = new MimeBodyPart(); 77 DataHandler dh = new DataHandler(new FileDataSource("src\\1.jpg")); 78 image.setDataHandler(dh); 79 image.setContentID("xxx.jpg"); 80 // 描述數(shù)據(jù)關(guān)系 81 MimeMultipart mm = new MimeMultipart(); 82 mm.addBodyPart(text); 83 mm.addBodyPart(image); 84 mm.setSubType("related"); 85 86 message.setContent(mm); 87 message.saveChanges(); 88 //將創(chuàng)建好的郵件寫入到E盤以文件的形式進行保存 89 message.writeTo(new FileOutputStream("E:\\ImageMail.eml")); 90 //返回創(chuàng)建好的郵件 91 return message; 92 } 93 }3.5、發(fā)送包含附件的郵件
1 package me.gacl.main;2 3 import java.io.FileOutputStream;4 import java.util.Properties;5 6 import javax.activation.DataHandler;7 import javax.activation.FileDataSource;8 import javax.mail.Message;9 import javax.mail.Session; 10 import javax.mail.Transport; 11 import javax.mail.internet.InternetAddress; 12 import javax.mail.internet.MimeBodyPart; 13 import javax.mail.internet.MimeMessage; 14 import javax.mail.internet.MimeMultipart; 15 16 /** 17 * @ClassName: Sendmail 18 * @Description: 發(fā)送Email 19 * @author: 孤傲蒼狼 20 * @date: 2015-1-12 下午9:42:56 21 * 22 */ 23 public class Sendmail { 24 25 /** 26 * @param args 27 * @throws Exception 28 */ 29 public static void main(String[] args) throws Exception { 30 31 Properties prop = new Properties(); 32 prop.setProperty("mail.host", "smtp.sohu.com"); 33 prop.setProperty("mail.transport.protocol", "smtp"); 34 prop.setProperty("mail.smtp.auth", "true"); 35 //使用JavaMail發(fā)送郵件的5個步驟 36 //1、創(chuàng)建session 37 Session session = Session.getInstance(prop); 38 //開啟Session的debug模式,這樣就可以查看到程序發(fā)送Email的運行狀態(tài) 39 session.setDebug(true); 40 //2、通過session得到transport對象 41 Transport ts = session.getTransport(); 42 //3、連上郵件服務(wù)器 43 ts.connect("smtp.sohu.com", "gacl", "郵箱密碼"); 44 //4、創(chuàng)建郵件 45 Message message = createAttachMail(session); 46 //5、發(fā)送郵件 47 ts.sendMessage(message, message.getAllRecipients()); 48 ts.close(); 49 } 50 51 /** 52 * @Method: createAttachMail 53 * @Description: 創(chuàng)建一封帶附件的郵件 54 * @Anthor:孤傲蒼狼 55 * 56 * @param session 57 * @return 58 * @throws Exception 59 */ 60 public static MimeMessage createAttachMail(Session session) throws Exception{ 61 MimeMessage message = new MimeMessage(session); 62 63 //設(shè)置郵件的基本信息 64 //發(fā)件人 65 message.setFrom(new InternetAddress("gacl@sohu.com")); 66 //收件人 67 message.setRecipient(Message.RecipientType.TO, new InternetAddress("xdp_gacl@sina.cn")); 68 //郵件標題 69 message.setSubject("JavaMail郵件發(fā)送測試"); 70 71 //創(chuàng)建郵件正文,為了避免郵件正文中文亂碼問題,需要使用charset=UTF-8指明字符編碼 72 MimeBodyPart text = new MimeBodyPart(); 73 text.setContent("使用JavaMail創(chuàng)建的帶附件的郵件", "text/html;charset=UTF-8"); 74 75 //創(chuàng)建郵件附件 76 MimeBodyPart attach = new MimeBodyPart(); 77 DataHandler dh = new DataHandler(new FileDataSource("src\\2.jpg")); 78 attach.setDataHandler(dh); 79 attach.setFileName(dh.getName()); // 80 81 //創(chuàng)建容器描述數(shù)據(jù)關(guān)系 82 MimeMultipart mp = new MimeMultipart(); 83 mp.addBodyPart(text); 84 mp.addBodyPart(attach); 85 mp.setSubType("mixed"); 86 87 message.setContent(mp); 88 message.saveChanges(); 89 //將創(chuàng)建的Email寫入到E盤存儲 90 message.writeTo(new FileOutputStream("E:\\attachMail.eml")); 91 //返回生成的郵件 92 return message; 93 } 94 }3.6、發(fā)送包含內(nèi)嵌圖片和附件的復(fù)雜郵件
1 package me.gacl.main;2 3 import java.io.FileOutputStream;4 import java.util.Properties;5 import javax.activation.DataHandler;6 import javax.activation.FileDataSource;7 import javax.mail.Message;8 import javax.mail.Session;9 import javax.mail.Transport;10 import javax.mail.internet.InternetAddress;11 import javax.mail.internet.MimeBodyPart;12 import javax.mail.internet.MimeMessage;13 import javax.mail.internet.MimeMultipart;14 import javax.mail.internet.MimeUtility;15 16 /**17 * @ClassName: Sendmail18 * @Description: 發(fā)送Email19 * @author: 孤傲蒼狼20 * @date: 2015-1-12 下午9:42:5621 *22 */ 23 public class Sendmail {24 25 /**26 * @param args27 * @throws Exception 28 */29 public static void main(String[] args) throws Exception {30 31 Properties prop = new Properties();32 prop.setProperty("mail.host", "smtp.sohu.com");33 prop.setProperty("mail.transport.protocol", "smtp");34 prop.setProperty("mail.smtp.auth", "true");35 //使用JavaMail發(fā)送郵件的5個步驟36 //1、創(chuàng)建session37 Session session = Session.getInstance(prop);38 //開啟Session的debug模式,這樣就可以查看到程序發(fā)送Email的運行狀態(tài)39 session.setDebug(true);40 //2、通過session得到transport對象41 Transport ts = session.getTransport();42 //3、連上郵件服務(wù)器43 ts.connect("smtp.sohu.com", "gacl", "郵箱密碼");44 //4、創(chuàng)建郵件45 Message message = createMixedMail(session);46 //5、發(fā)送郵件47 ts.sendMessage(message, message.getAllRecipients());48 ts.close();49 }50 51 /**52 * @Method: createMixedMail53 * @Description: 生成一封帶附件和帶圖片的郵件54 * @Anthor:孤傲蒼狼55 *56 * @param session57 * @return58 * @throws Exception59 */ 60 public static MimeMessage createMixedMail(Session session) throws Exception {61 //創(chuàng)建郵件62 MimeMessage message = new MimeMessage(session);63 64 //設(shè)置郵件的基本信息65 message.setFrom(new InternetAddress("gacl@sohu.com"));66 message.setRecipient(Message.RecipientType.TO, new InternetAddress("xdp_gacl@sina.cn"));67 message.setSubject("帶附件和帶圖片的的郵件");68 69 //正文70 MimeBodyPart text = new MimeBodyPart();71 text.setContent("xxx這是女的xxxx<br/><img src='cid:aaa.jpg'>","text/html;charset=UTF-8");72 73 //圖片74 MimeBodyPart image = new MimeBodyPart();75 image.setDataHandler(new DataHandler(new FileDataSource("src\\3.jpg")));76 image.setContentID("aaa.jpg");77 78 //附件179 MimeBodyPart attach = new MimeBodyPart();80 DataHandler dh = new DataHandler(new FileDataSource("src\\4.zip"));81 attach.setDataHandler(dh);82 attach.setFileName(dh.getName());83 84 //附件285 MimeBodyPart attach2 = new MimeBodyPart();86 DataHandler dh2 = new DataHandler(new FileDataSource("src\\波子.zip"));87 attach2.setDataHandler(dh2);88 attach2.setFileName(MimeUtility.encodeText(dh2.getName()));89 90 //描述關(guān)系:正文和圖片91 MimeMultipart mp1 = new MimeMultipart();92 mp1.addBodyPart(text);93 mp1.addBodyPart(image);94 mp1.setSubType("related");95 96 //描述關(guān)系:正文和附件97 MimeMultipart mp2 = new MimeMultipart();98 mp2.addBodyPart(attach);99 mp2.addBodyPart(attach2); 100 101 //代表正文的bodypart 102 MimeBodyPart content = new MimeBodyPart(); 103 content.setContent(mp1); 104 mp2.addBodyPart(content); 105 mp2.setSubType("mixed"); 106 107 message.setContent(mp2); 108 message.saveChanges(); 109 110 message.writeTo(new FileOutputStream("E:\\MixedMail.eml")); 111 //返回創(chuàng)建好的的郵件 112 return message; 113 } 114 }以上就是使用JavaMail的API創(chuàng)建郵件和發(fā)送郵件的全部內(nèi)容。
轉(zhuǎn)載于:https://www.cnblogs.com/Vae1990Silence/p/4622521.html
總結(jié)
以上是生活随笔為你收集整理的JavaWeb学习总结(五十二)——使用JavaMail创建邮件和发送邮件的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: (七十)Xcode5及以上对于状态栏和导
- 下一篇: WCF - Versus Web Ser