用 apache commons-email 輕鬆傳送無亂碼郵件
原來專案中都是自己拿到 mail.jar 和 activation.jar 兩個包編寫傳送Email的程式碼,雖然不難,但也有些麻煩。
現在好了,在 apache 站點有一個 jarkata/commons/email 子專案,也為我們實現了傳送 Email 的功能,在 http://jakarta.apache.org/commons/email/ 把包 commons-email-1.0.jar 下來,自己要寫的程式碼就十分少了,並且非常明瞭。
這個包的大小隻有23K,也就是9個類而已,卻能讓您省不少事。
還需要mail.jar&activation.jar(google去找o(∩_∩)o...)
commons-email 提供了 SimpleEmail、MultiPartEmail、HtmlEmail、EmailAttachment 等類,只需要您按正常思維簡單的寫幾行程式碼就能發各種型別的 Email,一般我們用 JavaMail 傳送 Email 會碰到中文亂碼問題,主要是出現在把程式碼放在英文系統中執行時,處理方法是主題和內容使用 GBK 或 UTF-8 字符集。
在 http://jakarta.apache.org/commons/email/userguide.html 有 commons-email 的使用示例,如果直接用第一個例子放在英文環境中傳送帶中文主題或內容的郵件也會出現亂碼,
這裡對第一個例子稍做改造,可以讓發出的 Email 中文不出現亂碼,如下:
在以後在java中發郵件就用這個 commons-email 元件就好了,如果要傳送 HTML 郵件或者帶附件的郵件就學著http://jakarta.apache.org/commons/email/userguide.html 中的例子做即可,出現中文亂碼,跟到原始碼中想想辦法自己動動腦。
現在好了,在 apache 站點有一個 jarkata/commons/email 子專案,也為我們實現了傳送 Email 的功能,在 http://jakarta.apache.org/commons/email/ 把包 commons-email-1.0.jar 下來,自己要寫的程式碼就十分少了,並且非常明瞭。
這個包的大小隻有23K,也就是9個類而已,卻能讓您省不少事。
還需要mail.jar&activation.jar(google去找o(∩_∩)o...)
commons-email是apache提供的一個開源的API,是對javamail的封裝,因此在使用時要將javamail.jar加 到 class path中,主要包括SimpleEmail,MultiPartEmail,HtmlEmail,EmailAttachment四個類。
SimpleEmail:傳送簡單的email,不能新增附件
MultiPartEmail:文字郵件,可以新增多個附件
HtmlEmail:HTML格式郵件,同時具有MultiPartEmail類所有“功能”
EmailAttchment:附件類,可以新增本地資源,也可以指定網路上資源,在傳送時自動將網路上資源下載傳送。
傳送基本文字格式郵件:
==============
SimpleEmail email = new SimpleEmail();
//smtp host
email.setHostName("mail.test.com");
//登陸郵件伺服器的使用者名稱和密碼
email.setAuthentication("test","testpassword");
//接收人
email.addTo("jdoe@somewhere.org", "John Doe");
//傳送人
email.setFrom("me@apache.org", "Me");
//標題
email.setSubject("Test message");
//郵件內容
email.setMsg("This is a simple test of commons-email");
//傳送
email.send();
傳送文字格式,帶附件郵件:
==================
//附件,可以定義多個附件物件
EmailAttachment attachment = new EmailAttachment();
attachment.setPath("e:\\1.pdf");
attachment.setDisposition(EmailAttachment.ATTACHMENT);
attachment.setDescription("Picture of John");
//
MultiPartEmail email = new MultiPartEmail();
//smtp host
email.setHostName("mail.test.com");
//登陸郵件伺服器的使用者名稱和密碼
email.setAuthentication("test","testpassword");
//接收人
email.addTo("jdoe@somewhere.org", "John Doe");
//傳送人
email.setFrom("me@apache.org", "Me");
//標題
email.setSubject("Test message");
//郵件內容
email.setMsg("This is a simple test of commons-email");
//新增附件
email.attach(attachment);
//傳送
email.send();
傳送HTML格式帶附件郵件:
=================
//附件,可以定義多個附件物件
EmailAttachment attachment = new EmailAttachment();
attachment.setPath("e:\\1.pdf");
attachment.setDisposition(EmailAttachment.ATTACHMENT);
attachment.setDescription("Picture of John");
//
HtmlEmail email = new HtmlEmail ();
//smtp host
email.setHostName("mail.test.com");
//登陸郵件伺服器的使用者名稱和密碼
email.setAuthentication("test","testpassword");
//接收人
email.addTo("jdoe@somewhere.org", "John Doe");
//傳送人
email.setFrom("me@apache.org", "Me");
//標題
email.setSubject("Test message");
//郵件內容
email.setHtmlMsg("This is a simple test of commons-email");
//新增附件
email.attach(attachment);
//傳送
SimpleEmail:傳送簡單的email,不能新增附件
MultiPartEmail:文字郵件,可以新增多個附件
HtmlEmail:HTML格式郵件,同時具有MultiPartEmail類所有“功能”
EmailAttchment:附件類,可以新增本地資源,也可以指定網路上資源,在傳送時自動將網路上資源下載傳送。
傳送基本文字格式郵件:
==============
SimpleEmail email = new SimpleEmail();
//smtp host
email.setHostName("mail.test.com");
//登陸郵件伺服器的使用者名稱和密碼
email.setAuthentication("test","testpassword");
//接收人
email.addTo("jdoe@somewhere.org", "John Doe");
//傳送人
email.setFrom("me@apache.org", "Me");
//標題
email.setSubject("Test message");
//郵件內容
email.setMsg("This is a simple test of commons-email");
//傳送
email.send();
傳送文字格式,帶附件郵件:
==================
//附件,可以定義多個附件物件
EmailAttachment attachment = new EmailAttachment();
attachment.setPath("e:\\1.pdf");
attachment.setDisposition(EmailAttachment.ATTACHMENT);
attachment.setDescription("Picture of John");
//
MultiPartEmail email = new MultiPartEmail();
//smtp host
email.setHostName("mail.test.com");
//登陸郵件伺服器的使用者名稱和密碼
email.setAuthentication("test","testpassword");
//接收人
email.addTo("jdoe@somewhere.org", "John Doe");
//傳送人
email.setFrom("me@apache.org", "Me");
//標題
email.setSubject("Test message");
//郵件內容
email.setMsg("This is a simple test of commons-email");
//新增附件
email.attach(attachment);
//傳送
email.send();
傳送HTML格式帶附件郵件:
=================
//附件,可以定義多個附件物件
EmailAttachment attachment = new EmailAttachment();
attachment.setPath("e:\\1.pdf");
attachment.setDisposition(EmailAttachment.ATTACHMENT);
attachment.setDescription("Picture of John");
//
HtmlEmail email = new HtmlEmail ();
//smtp host
email.setHostName("mail.test.com");
//登陸郵件伺服器的使用者名稱和密碼
email.setAuthentication("test","testpassword");
//接收人
email.addTo("jdoe@somewhere.org", "John Doe");
//傳送人
email.setFrom("me@apache.org", "Me");
//標題
email.setSubject("Test message");
//郵件內容
email.setHtmlMsg("This is a simple test of commons-email");
//新增附件
email.attach(attachment);
//傳送
下面提供一個完整的程式示例:
package zieckey
import org.apache.commons.mail.*;
public class SendEMail
{
public static void main ( String[] arg ) throws Exception
{
SimpleEmail email = new SimpleEmail ();
// smtp host
email.setHostName ( "smtp.163.com" );
// 登陸郵件伺服器的使用者名稱和密碼
email.setAuthentication ( "zieckey", "123456" );
// 接收人
email.addTo ( "zieckey@yahoo.com.cn", "Zieckey" );
// 傳送人
email.setFrom ( "zieckey@163.com", "Me" );
// 標題
email.setSubject ( "Test message" );
// 郵件內容
email.setMsg ( "This is a simple test of commons-email");
// 傳送
email.send ( );
System.out.println ( "Send
email successful!" );
}
}
commons-email 提供了 SimpleEmail、MultiPartEmail、HtmlEmail、EmailAttachment 等類,只需要您按正常思維簡單的寫幾行程式碼就能發各種型別的 Email,一般我們用 JavaMail 傳送 Email 會碰到中文亂碼問題,主要是出現在把程式碼放在英文系統中執行時,處理方法是主題和內容使用 GBK 或 UTF-8 字符集。
在 http://jakarta.apache.org/commons/email/userguide.html 有 commons-email 的使用示例,如果直接用第一個例子放在英文環境中傳送帶中文主題或內容的郵件也會出現亂碼,
這裡對第一個例子稍做改造,可以讓發出的 Email 中文不出現亂碼,如下:
- package com.unmi;
- import org.apache.commons.mail.SimpleEmail;
- public class MailTo
- {
- /**
- * @Author Unmi
- * @param args
- * @throws Exception
- */
- public static void main(String[] args) throws Exception
- {
- //傳送簡單郵件
- SimpleEmail email = new SimpleEmail();
- email.setHostName("mail.2911.net");
- //需要郵件傳送伺服器驗證,使用者名稱/密碼
- email.setAuthentication("broodwar", "xxxxxx");
- email.addTo("fantasia@sina.com", "fantasia");
- email.setFrom("broodwar@2911.net", "Broodwar");
- //設定主題的字符集為UTF-8
- email.setCharset("UTF-8");
- email.setSubject("測試郵件主題");
- email.buildMimeMessage();
- //設定內容的字符集為UTF-8,先buildMimeMessage才能設定內容文字
- email.getMimeMessage().setText("測試郵件內容","UTF-8");
- email.sendMimeMessage();
- }
- }
在以後在java中發郵件就用這個 commons-email 元件就好了,如果要傳送 HTML 郵件或者帶附件的郵件就學著http://jakarta.apache.org/commons/email/userguide.html 中的例子做即可,出現中文亂碼,跟到原始碼中想想辦法自己動動腦。
相關文章
- 郵件傳送時的亂碼問題
- Laravel 傳送純文字郵件時提示亂碼Laravel
- 使用Apache commons email傳送郵件ApacheAI
- 郵件傳送庫原始碼原始碼
- 郵件傳送
- 傳送郵件
- 解決jenkins 傳送郵件圖片亂碼問題Jenkins
- 在python中傳送郵件亂碼了怎麼辦?Python
- 谷歌郵箱,配置傳送郵件密碼谷歌密碼
- 用oracle傳送電子郵件Oracle
- 用Perl實現郵件傳送
- 用Oracle傳送郵件procedure (zt)Oracle
- laravel 傳送郵件修改密碼Laravel密碼
- SpringBoot整合Mail傳送郵件&傳送模板郵件Spring BootAI
- HP-UX mailx傳送郵件出現中文亂碼問題UXAI
- Laravel 傳送郵件Laravel
- PHP傳送郵件PHP
- Django——郵件傳送Django
- java郵件傳送Java
- Laravel傳送郵件Laravel
- gmail傳送郵件AI
- Oracle郵件傳送Oracle
- java傳送郵件Java
- Powershell郵件傳送
- thinkphp 郵件傳送PHP
- centos 傳送郵件CentOS
- phpcms傳送郵件PHP
- 郵件的傳送
- ASP用JMail、CDO傳送郵件 (轉)AI
- 利用Jmail傳送帶附件的郵件時亂碼的解決方案AI
- Laravel 重置密碼傳送郵件分析Laravel密碼
- JavaMail 郵件傳送,有意思的附件名亂碼 → 客戶端正常,web端亂碼JavaAI客戶端Web
- Java Mail 郵件傳送(二):簡單封裝的郵件傳送JavaAI封裝
- foxmail能收郵件,但是無法傳送郵件的問題AI
- Linux配置msmtp+mutt傳送郵件(可放在指令碼中定時傳送郵件)Linux指令碼
- golang傳送郵件(qq郵箱)Golang
- 郵件傳送API整理API
- php windows 傳送郵件PHPWindows