摘要:代碼測試過程出現(xiàn)的問題,請參看郵件發(fā)送成功但未收到郵件的問題及解決辦法和使用發(fā)送郵件的有關(guān)說明分析解決。類電子郵件發(fā)送器,包含各種郵件發(fā)送方法,如文本形式形式和含附件形式等。
前言
??關(guān)于JavaMail發(fā)送郵件的代碼,網(wǎng)上隨便搜搜就可以找到,但是要么寫得簡單且沒有注釋解釋,要么寫得復(fù)雜又非常雜亂。由于項目需要,花了一段時間搜集網(wǎng)上各類案例,熟悉JavaMail郵件發(fā)送涉及的配置,取其精華去其糟粕。在功能測試正常可用的前提下,對代碼的排版和注釋進(jìn)行梳理調(diào)整,提煉出符合自己要求的功能代碼,現(xiàn)將它分享給大家,希望大家少走彎路,提高開發(fā)效率。代碼測試過程出現(xiàn)的問題,請參看《JavaMail郵件發(fā)送成功但未收到郵件的問題及解決辦法》和《使用geronimo-javamail_1.4發(fā)送郵件的有關(guān)說明》分析解決。
主要類及功能1、EmailAuthenticator類:繼承Authenticator類的賬號密碼驗證器,主要用于創(chuàng)建郵件會話時調(diào)用。
2、EmailSendInfo類:郵件參數(shù)信息設(shè)置,參數(shù)包括賬號、密碼、SMTP服務(wù)器地址和服務(wù)端口等。
3、EmailSender類:電子郵件發(fā)送器,包含各種郵件發(fā)送方法,如文本形式、HTML形式和含附件形式等。
注:請到Oracle官網(wǎng)下載JavaMail的jar包,提供以下參考下載地址:
EmailAuthenticator類http://www.oracle.com/technet...
https://java.net/projects/jav...
import javax.mail.*; public class EmailAuthenticator extends Authenticator{ private String userName; private String password; public EmailAuthenticator(){} public EmailAuthenticator(String username, String password) { this.userName = username; this.password = password; } protected PasswordAuthentication getPasswordAuthentication(){ return new PasswordAuthentication(userName, password); } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } }EmailSendInfo類
import java.util.Properties; public class EmailSendInfo { // 發(fā)送郵件的服務(wù)器的IP和端口 private String mailServerHost; private String mailServerPort = "25"; // 郵件發(fā)送者的地址 private String fromAddress; // 郵件接收者的地址 private String toAddress; // 登陸郵件發(fā)送服務(wù)器的用戶名和密碼 private String userName; private String password; // 是否需要身份驗證 private boolean validate = false; // 郵件主題 private String subject; // 郵件的文本內(nèi)容 private String content; // 郵件附件的文件名 private String[] attachFileNames; /** * 獲得郵件會話屬性 */ 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; } }EmailSender類
??為了方面大家閱讀,我將EmailSender類的內(nèi)容進(jìn)行了拆分,測試使用只需要將下面內(nèi)容組合就可。其中main方法中的部分參數(shù)信息需要自行設(shè)置,請勿直接粘貼測試。
import配置import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.util.Date; 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.MessagingException; 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;用于測試的main方法
public static void main(String[] args) { String fromaddr = "XXX@sohu.com"; String toaddr = "XXX@sohu.com"; // String title = "【測試標(biāo)題】Testing Subject-myself-TEXT"; // String title = "【測試標(biāo)題】Testing Subject-myself-HTML"; // String title = "【測試標(biāo)題】Testing Subject-myself-eml文件"; String title = "【測試標(biāo)題】Testing Subject-myself-eml文件_含多個附件"; String content = "【測試內(nèi)容】Hello, this is sample for to check send email using JavaMailAPI "; String port = "25"; String host = "smtp.sohu.com"; String userName = "XXX@sohu.com"; String password = "XXX"; EmailSendInfo mailInfo = new EmailSendInfo(); mailInfo.setMailServerHost(host); mailInfo.setMailServerPort(port); mailInfo.setValidate(true); mailInfo.setUserName(userName); mailInfo.setPassword(password); mailInfo.setFromAddress(fromaddr); mailInfo.setToAddress(toaddr); mailInfo.setSubject(title); mailInfo.setContent(content); mailInfo.setAttachFileNames(new String[]{"file/XXX.jpg","file/XXX.txt"}); //發(fā)送文體格式郵件 // EmailSender.sendTextMail(mailInfo); //發(fā)送html格式郵件 // EmailSender.sendHtmlMail(mailInfo); //發(fā)送含附件的郵件 EmailSender.sendAttachmentMail(mailInfo); //讀取eml文件發(fā)送 // File emailFile = new File("file/EML_myself-eml.eml"); // File emailFile = new File("file/EML_reademl-eml文件_含文本附件.eml"); // File emailFile = new File("file/EML_reademl-eml文件_含圖片附件.eml"); // File emailFile = new File("file/EML_reademl-eml文件_含多個附件.eml"); // EmailSender.sendMail(mailInfo, emailFile); }以文本格式發(fā)送郵件
public static boolean sendTextMail(EmailSendInfo mailInfo) { boolean sendStatus = false;//發(fā)送狀態(tài) // 判斷是否需要身份認(rèn)證 EmailAuthenticator authenticator = null; Properties pro = mailInfo.getProperties(); if (mailInfo.isValidate()) { // 如果需要身份認(rèn)證,則創(chuàng)建一個密碼驗證器 authenticator = new EmailAuthenticator(mailInfo.getUserName(), mailInfo.getPassword()); } // 根據(jù)郵件會話屬性和密碼驗證器構(gòu)造一個發(fā)送郵件的session Session sendMailSession = Session.getInstance(pro, authenticator); //【調(diào)試時使用】開啟Session的debug模式 sendMailSession.setDebug(true); try { // 根據(jù)session創(chuàng)建一個郵件消息 MimeMessage mailMessage = new MimeMessage(sendMailSession); // 創(chuàng)建郵件發(fā)送者地址 Address from = new InternetAddress(mailInfo.getFromAddress()); // 設(shè)置郵件消息的發(fā)送者 mailMessage.setFrom(from); // 創(chuàng)建郵件的接收者地址,并設(shè)置到郵件消息中 Address to = new InternetAddress(mailInfo.getToAddress()); mailMessage.setRecipient(Message.RecipientType.TO,to); // 設(shè)置郵件消息的主題 mailMessage.setSubject(mailInfo.getSubject(), "UTF-8"); // 設(shè)置郵件消息發(fā)送的時間 mailMessage.setSentDate(new Date()); // 設(shè)置郵件消息的主要內(nèi)容 String mailContent = mailInfo.getContent(); mailMessage.setText(mailContent, "UTF-8"); // mailMessage.saveChanges(); //生成郵件文件 createEmailFile("file/EML_myself-TEXT.eml", mailMessage); // 發(fā)送郵件 Transport.send(mailMessage); sendStatus = true; } catch (MessagingException ex) { LOG.error("以文本格式發(fā)送郵件出現(xiàn)異常", ex); return sendStatus; } return sendStatus; }以HTML格式發(fā)送郵件
public static boolean sendHtmlMail(EmailSendInfo mailInfo){ boolean sendStatus = false;//發(fā)送狀態(tài) // 判斷是否需要身份認(rèn)證 EmailAuthenticator authenticator = null; Properties pro = mailInfo.getProperties(); //如果需要身份認(rèn)證,則創(chuàng)建一個密碼驗證器 if (mailInfo.isValidate()) { authenticator = new EmailAuthenticator(mailInfo.getUserName(), mailInfo.getPassword()); } // 根據(jù)郵件會話屬性和密碼驗證器構(gòu)造一個發(fā)送郵件的session Session sendMailSession = Session.getDefaultInstance(pro,authenticator); //【調(diào)試時使用】開啟Session的debug模式 sendMailSession.setDebug(true); try { // 根據(jù)session創(chuàng)建一個郵件消息 Message mailMessage = new MimeMessage(sendMailSession); // 創(chuàng)建郵件發(fā)送者地址 Address from = new InternetAddress(mailInfo.getFromAddress()); // 設(shè)置郵件消息的發(fā)送者 mailMessage.setFrom(from); // 創(chuàng)建郵件的接收者地址,并設(shè)置到郵件消息中 Address to = new InternetAddress(mailInfo.getToAddress()); // Message.RecipientType.TO屬性表示接收者的類型為TO mailMessage.setRecipient(Message.RecipientType.TO,to); // 設(shè)置郵件消息的主題 mailMessage.setSubject(mailInfo.getSubject()); // 設(shè)置郵件消息發(fā)送的時間 mailMessage.setSentDate(new Date()); // 設(shè)置郵件內(nèi)容 mailMessage.setContent(mailInfo.getContent(), "text/html;charset=utf-8"); //生成郵件文件 createEmailFile("file/EML_myself-HTML.eml", mailMessage); // 發(fā)送郵件 Transport.send(mailMessage); sendStatus = true; } catch (MessagingException ex) { LOG.error("以HTML格式發(fā)送郵件出現(xiàn)異常", ex); return sendStatus; } return sendStatus; }讀取eml文件后發(fā)送郵件
public static boolean sendMail(EmailSendInfo mailInfo, File emailFile) { boolean sendStatus = false;//發(fā)送狀態(tài) // 判斷是否需要身份認(rèn)證 EmailAuthenticator authenticator = null; Properties pro = mailInfo.getProperties(); if (mailInfo.isValidate()) { // 如果需要身份認(rèn)證,則創(chuàng)建一個密碼驗證器 authenticator = new EmailAuthenticator(mailInfo.getUserName(), mailInfo.getPassword()); } // 根據(jù)郵件會話屬性和密碼驗證器構(gòu)造一個發(fā)送郵件的session Session sendMailSession = Session.getInstance(pro, authenticator); //【調(diào)試時使用】開啟Session的debug模式 sendMailSession.setDebug(true); try { InputStream source = new FileInputStream(emailFile); // 根據(jù)session創(chuàng)建一個郵件消息 Message mailMessage = new MimeMessage(sendMailSession, source); // 發(fā)送郵件 Transport.send(mailMessage); //【重要】關(guān)閉輸入流,否則會導(dǎo)致文件無法移動或刪除 source.close(); sendStatus = true; } catch (MessagingException e) { LOG.error("以文本格式發(fā)送郵件出現(xiàn)異常", e); return sendStatus; } catch (FileNotFoundException e) { LOG.error("FileNotFoundException", e); return sendStatus; } catch (Exception e) { LOG.error("Exception", e); return sendStatus; } return sendStatus; }以含附件形式發(fā)送郵件
public static boolean sendAttachmentMail(EmailSendInfo mailInfo) { boolean sendStatus = false;//發(fā)送狀態(tài) // 判斷是否需要身份認(rèn)證 EmailAuthenticator authenticator = null; Properties pro = mailInfo.getProperties(); if (mailInfo.isValidate()) { // 如果需要身份認(rèn)證,則創(chuàng)建一個密碼驗證器 authenticator = new EmailAuthenticator(mailInfo.getUserName(), mailInfo.getPassword()); } // 根據(jù)郵件會話屬性和密碼驗證器構(gòu)造一個發(fā)送郵件的session Session sendMailSession = Session.getInstance(pro, authenticator); //【調(diào)試時使用】開啟Session的debug模式 sendMailSession.setDebug(true); try { // 根據(jù)session創(chuàng)建一個郵件消息 MimeMessage mailMessage = new MimeMessage(sendMailSession); // 創(chuàng)建郵件發(fā)送者地址 Address from = new InternetAddress(mailInfo.getFromAddress()); // 設(shè)置郵件消息的發(fā)送者 mailMessage.setFrom(from); // 創(chuàng)建郵件的接收者地址,并設(shè)置到郵件消息中 Address to = new InternetAddress(mailInfo.getToAddress()); mailMessage.setRecipient(Message.RecipientType.TO,to); // 設(shè)置郵件消息的主題 mailMessage.setSubject(mailInfo.getSubject(), "UTF-8"); // 設(shè)置郵件消息發(fā)送的時間 mailMessage.setSentDate(new Date()); // 設(shè)置郵件消息的主要內(nèi)容 String mailContent = mailInfo.getContent(); // MiniMultipart類是一個容器類,包含MimeBodyPart類型的對象 Multipart mainPart = new MimeMultipart(); // 創(chuàng)建一個包含HTML內(nèi)容的MimeBodyPart BodyPart bodyPart = new MimeBodyPart(); //設(shè)置TEXT內(nèi)容 // bodyPart.setText(mailInfo.getContent()); // 設(shè)置HTML內(nèi)容 bodyPart.setContent(mailInfo.getContent(), "text/html; charset=utf-8"); mainPart.addBodyPart(bodyPart); //設(shè)置附件 String[] filenames = mailInfo.getAttachFileNames(); for (int i = 0; i < filenames.length; i++) { // Part two is attachment bodyPart = new MimeBodyPart(); String filename = filenames[i];//1.txt/sohu_mail.jpg // DataSource source = new FileDataSource(filename); FileDataSource source = new FileDataSource(filename); bodyPart.setDataHandler(new DataHandler(source)); bodyPart.setFileName(source.getName()); mainPart.addBodyPart(bodyPart); } // 將MiniMultipart對象設(shè)置為郵件內(nèi)容 mailMessage.setContent(mainPart); //生成郵件文件 createEmailFile("file/EML_reademl-eml文件_含多個附件.eml", mailMessage); // 發(fā)送郵件 Transport.send(mailMessage); sendStatus = true; } catch (MessagingException ex) { LOG.error("以文本格式發(fā)送郵件出現(xiàn)異常", ex); return sendStatus; } return sendStatus; }生成郵件文件
public static void createEmailFile(String fileName, Message mailMessage) throws MessagingException { File f = new File(fileName); try { mailMessage.writeTo(new FileOutputStream(f)); } catch (IOException e) { LOG.error("IOException", e); } }
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/66482.html
摘要:網(wǎng)上也有不少人反饋用手機(jī)客戶端無法使用新浪郵箱發(fā)送郵件,隨后我嘗試用登錄新浪郵箱,也出現(xiàn)只能接收郵件而不能發(fā)送郵件的情況。三附錄錯誤碼及建議解決方法發(fā)送郵件成功卻收不到郵件或收到郵件無主題無收件人亂碼新浪郵箱誠信平臺 前言 ??JavaMail的使用本身并不難,網(wǎng)上有不少案例,簡單易懂,而且有詳細(xì)的中文注解。但是由于JavaMail的機(jī)制設(shè)置不夠完善,特別是異常出錯時的參考信息太少,給...
摘要:時間年月日星期三說明本文部分內(nèi)容均來自慕課網(wǎng)。用戶過生日,系統(tǒng)發(fā)送生日祝福郵件。將最新活動和優(yōu)惠以郵件的形式告知會員。通常把處理用戶請求郵件發(fā)送請求的郵件服務(wù)器稱為服務(wù)器。提供了加密的協(xié)議被稱為。 時間:2017年06月07日星期三說明:本文部分內(nèi)容均來自慕課網(wǎng)。@慕課網(wǎng):http://www.imooc.com教學(xué)示例源碼:無個人學(xué)習(xí)源碼:https://github.com/zcc...
摘要:它是發(fā)布的用來處理的。入門第一篇郵件簡介及概述摘自入門第二篇創(chuàng)建郵件摘自入門第三篇發(fā)送郵件摘自入門第四篇接收郵件摘自入門第五篇解析郵件摘自第二講使用表示消息常用郵箱的地址及對應(yīng)的端口 JavaMail,顧名思義,提供給開發(fā)者處理電子郵件相關(guān)的編程接口。它是Sun發(fā)布的用來處理email的API。它可以方便地執(zhí)行一些常用的郵件傳輸。JavaMail API是Sun公司為方便Java開發(fā)人...
摘要:我拿網(wǎng)易郵箱賬號舉例子,那么我們?nèi)绾尾拍茏屇愕泥]箱賬號可以利用第三方發(fā)送郵件這里的第三方就是我們即將編寫的程序。 一 前言 測試所使用的環(huán)境 測試使用的環(huán)境是企業(yè)主流的SSM 框架即 SpringMVC+Spring+Mybatis。為了節(jié)省時間,我直接使用的是我上次的SSM項目中整合Echarts開發(fā)該項目已經(jīng)搭建完成的SSM環(huán)境。 標(biāo)題說的四種姿勢指的是哪四種姿勢? 發(fā)送text...
閱讀 4242·2021-09-26 10:17
閱讀 884·2021-09-22 15:02
閱讀 3476·2021-09-06 15:00
閱讀 1067·2021-07-25 16:52
閱讀 2748·2019-08-29 16:16
閱讀 2526·2019-08-29 13:25
閱讀 1600·2019-08-26 13:51
閱讀 2195·2019-08-26 10:58