JAVA發(fā)送郵件的3個(gè)實(shí)例
public void test1() {
// 收件人電子郵箱 String to = "xxx@qq.com";
// 發(fā)件人電子郵箱 String from = "xxx@126.com";
// 指定發(fā)送郵件的主機(jī) String host = "smtp.126.com";
// 獲取系統(tǒng)屬性 Properties properties = System.getProperties();
// 設(shè)置郵件服務(wù)器 properties.setProperty("mail.smtp.host", host);
properties.put("mail.smtp.auth", "true"); // 獲取默認(rèn)session對象 Session session = Session.getDefaultInstance(properties, new Authenticator() { public PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication("xxx@126.com", "xxx"); //發(fā)件人郵件用戶名、密碼 } });
try { // 創(chuàng)建默認(rèn)的 MimeMessage 對象 MimeMessage message = new MimeMessage(session);
// Set From: 頭部頭字段 message.setFrom(new InternetAddress(from));
// Set To: 頭部頭字段 message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
// Set Subject: 頭部頭字段 message.setSubject("This is the Subject Line!");
// 設(shè)置消息體 message.setText("This is actual message");
// 發(fā)送消息 Transport.send(message); System.out.println("Sent message successfully....from w3cschool.cc"); } catch (MessagingException mex) { mex.printStackTrace(); }
}
2. 發(fā)送帶附件的郵件
public class MailUtils {private String host = ""; // smtp服務(wù)器private String from = ""; // 發(fā)件人地址private String to = ""; // 收件人地址private String affix = ""; // 附件地址private String affixName = ""; // 附件名稱private String user = ""; // 用戶名private String pwd = ""; // 密碼private String subject = ""; // 郵件標(biāo)題
public void setAddress(String from, String to, String subject) { this.from = from; this.to = to; this.subject = subject;}
public void setAffix(String affix, String affixName) { this.affix = affix; this.affixName = affixName;}
public void send(String host, String user, String pwd) { this.host = host; this.user = user; this.pwd = pwd;
Properties props = new Properties();
// 設(shè)置發(fā)送郵件的郵件服務(wù)器的屬性(這里使用網(wǎng)易的smtp服務(wù)器) props.put("mail.smtp.host", host); // 需要經(jīng)過授權(quán),也就是有戶名和密碼的校驗(yàn),這樣才能通過驗(yàn)證(一定要有這一條) props.put("mail.smtp.auth", "true");
// 用剛剛設(shè)置好的props對象構(gòu)建一個(gè)session Session session = Session.getDefaultInstance(props);
// 有了這句便可以在發(fā)送郵件的過程中在console處顯示過程信息,供調(diào)試使 // 用(你可以在控制臺(tái)(console)上看到發(fā)送郵件的過程) session.setDebug(true);
// 用session為參數(shù)定義消息對象 MimeMessage message = new MimeMessage(session); try { // 加載發(fā)件人地址 message.setFrom(new InternetAddress(from)); // 加載收件人地址 message.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); // 加載標(biāo)題 message.setSubject(subject);
// 向multipart對象中添加郵件的各個(gè)部分內(nèi)容,包括文本內(nèi)容和附件 Multipart multipart = new MimeMultipart();
// 設(shè)置郵件的文本內(nèi)容 BodyPart contentPart = new MimeBodyPart(); contentPart.setText("郵件的具體內(nèi)容在此"); multipart.addBodyPart(contentPart); // 添加附件 BodyPart messageBodyPart = new MimeBodyPart(); DataSource source = new FileDataSource(affix); // 添加附件的內(nèi)容 messageBodyPart.setDataHandler(new DataHandler(source)); // 添加附件的標(biāo)題 // 這里很重要,通過下面的Base64編碼的轉(zhuǎn)換可以保證你的中文附件標(biāo)題名在發(fā)送時(shí)不會(huì)變成亂碼 sun.misc.BASE64Encoder enc = new sun.misc.BASE64Encoder(); messageBodyPart.setFileName("=?GBK?B?" + enc.encode(affixName.getBytes()) + "?="); multipart.addBodyPart(messageBodyPart);
// 將multipart對象放到message中 message.setContent(multipart); // 保存郵件 message.saveChanges(); // 發(fā)送郵件 Transport transport = session.getTransport("smtp"); // 連接服務(wù)器的郵箱 transport.connect(host, user, pwd); // 把郵件發(fā)送出去 transport.sendMessage(message, message.getAllRecipients()); transport.close(); } catch (Exception e) { e.printStackTrace(); }}
}
@org.junit.Test
public void testEmail() {MailUtils cn = new MailUtils();// 設(shè)置發(fā)件人地址、收件人地址和郵件標(biāo)題cn.setAddress("xxx@126.com", "xxx@qq.com", "一個(gè)帶附件的JavaMail郵件");// 設(shè)置要發(fā)送附件的位置和標(biāo)題cn.setAffix("f:/123.txt", "123.txt");
/** * 設(shè)置smtp服務(wù)器以及郵箱的帳號和密碼 * 用QQ 郵箱作為發(fā)生者不好使 (原因不明) * 163 郵箱可以,但是必須開啟 POP3/SMTP服務(wù) 和 IMAP/SMTP服務(wù) * 因?yàn)槌绦驅(qū)儆诘谌降卿?,所以登錄密碼必須使用163的授權(quán)碼 * */ // 注意: [授權(quán)碼和你平時(shí)登錄的密碼是不一樣的] cn.send("smtp.126.com", "xxx@126.com", "xxx");
}
Spring Boot中使用JavaMailSender發(fā)送郵件
1. 快速入門
在Spring Boot的工程中的pom.xml中引入spring-boot-starter-mail依賴:
如其他自動(dòng)化配置模塊一樣,在完成了依賴引入之后,只需要在application.properties中配置相應(yīng)的屬性內(nèi)容。
下面我們以QQ郵箱為例,在application.properties中加入如下配置(注意替換自己的用戶名和密碼):
通過單元測試來實(shí)現(xiàn)一封簡單郵件的發(fā)送:
在上例中,我們通過使用SimpleMailMessage實(shí)現(xiàn)了簡單的郵件發(fā)送,但是實(shí)際使用過程中,我們還可能會(huì)帶上附件、或是使用郵件模塊等。這個(gè)時(shí)候我們就需要使用MimeMessage來設(shè)置復(fù)雜一些的郵件內(nèi)容,下面我們就來依次實(shí)現(xiàn)一下。
發(fā)送附件在上面單元測試中加入如下測試用例(通過MimeMessageHelper來發(fā)送一封帶有附件的郵件):
@Test
public void sendAttachmentsMail() throws Exception {MimeMessage mimeMessage = mailSender.createMimeMessage();MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true);helper.setFrom("dyc87112@qq.com");helper.setTo("dyc87112@qq.com");helper.setSubject("主題:有附件");helper.setText("有附件的郵件");FileSystemResource file = new FileSystemResource(new File("weixin.jpg"));helper.addAttachment("附件-1.jpg", file);helper.addAttachment("附件-2.jpg", file);mailSender.send(mimeMessage);
}
嵌入靜態(tài)資源
除了發(fā)送附件之外,我們在郵件內(nèi)容中可能希望通過嵌入圖片等靜態(tài)資源,讓郵件獲得更好的閱讀體驗(yàn),而不是從附件中查看具體圖片,下面的測試用例演示了如何通過MimeMessageHelper實(shí)現(xiàn)在郵件正文中嵌入靜態(tài)資源。
@Test
public void sendInlineMail() throws Exception {MimeMessage mimeMessage = mailSender.createMimeMessage();MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true);helper.setFrom("dyc87112@qq.com");helper.setTo("dyc87112@qq.com");helper.setSubject("主題:嵌入靜態(tài)資源");helper.setText("", true);FileSystemResource file = new FileSystemResource(new File("weixin.jpg"));helper.addInline("weixin", file);mailSender.send(mimeMessage);
}
這里需要注意的是addInline函數(shù)中資源名稱weixin需要與正文中cid:weixin對應(yīng)起來
模板郵件通常我們使用郵件發(fā)送服務(wù)的時(shí)候,都會(huì)有一些固定的場景,比如重置密碼、注冊確認(rèn)等,給每個(gè)用戶發(fā)送的內(nèi)容可能只有小部分是變化的。所以,很多時(shí)候我們會(huì)使用模板引擎來為各類郵件設(shè)置成模板,這樣我們只需要在發(fā)送時(shí)去替換變化部分的參數(shù)即可。
在Spring Boot中使用模板引擎來實(shí)現(xiàn)模板化的郵件發(fā)送也是非常容易的,下面我們以velocity為例實(shí)現(xiàn)一下。
引入velocity模塊的依賴:
org.springframework.boot spring-boot-starter-velocity
在resources/templates/下,創(chuàng)建一個(gè)模板頁面template.vm:
你好, ${username}, 這是一封模板郵件!
我們之前在Spring Boot中開發(fā)Web應(yīng)用時(shí),提到過在Spring Boot的自動(dòng)化配置下,模板默認(rèn)位于resources/templates/目錄下
最后,我們在單元測試中加入發(fā)送模板郵件的測試用例,具體如下:
@Test
public void sendTemplateMail() throws Exception {MimeMessage mimeMessage = mailSender.createMimeMessage();MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true);helper.setFrom("dyc87112@qq.com");helper.setTo("dyc87112@qq.com");helper.setSubject("主題:模板郵件");Map model = new HashedMap();model.put("username", "didi");String text = VelocityEngineUtils.mergeTemplateIntoString( velocityEngine, "template.vm", "UTF-8", model);helper.setText(text, true);mailSender.send(mimeMessage);
}
嘗試運(yùn)行一下,就可以收到內(nèi)容為你好, didi, 這是一封模板郵件!的郵件。這里,我們通過傳入username的參數(shù),在郵件內(nèi)容中替換了模板中的${username}變量。