Java 傳送郵件
Java 傳送郵件
使用Java應用程式傳送 E-mail 十分簡單,但是首先你應該在你的機器上安裝 JavaMail API 和Java Activation Framework (JAF) 。
- 您可以從 Java 網站下載最新版本的 JavaMail,開啟網頁右側有個 Downloads 連結,點選它下載。
- 您可以從 Java 網站下載最新版本的 JAF(版本 1.1.1)。
你也可以使用本站提供的下載連結:
-
JavaMail mail.jar 1.4.5
-
-
JAF(版本 1.1.1) activation.jar
-
下載並解壓縮這些檔案,在新建立的頂層目錄中,您會發現這兩個應用程式的一些 jar 檔案。您需要把 mail.jar 和 activation.jar 檔案新增到您的 CLASSPATH 中。
如果你使用第三方郵件伺服器如QQ的SMTP伺服器,可檢視文章底部使用者認證完整的例項。
傳送一封簡單的 E-mail
下面是一個傳送簡單E-mail的例子。假設你的本地主機已經連線到網路。
SendEmail.java 檔案程式碼:
import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;
public class SendEmail
{
public static void main(String [] args)
{
String to = "[email protected]";
String from = "[email protected]";
String host = "localhost";
Properties properties = System.getProperties();
properties.setProperty("mail.smtp.host", host);
Session session = Session.getDefaultInstance(properties);
try{
MimeMessage message = new MimeMessage(session);
message.setFrom(new InternetAddress(from));
message.addRecipient(Message.RecipientType.TO,
new InternetAddress(to));
message.setSubject("This is the Subject Line!");
message.setText("This is actual message");
Transport.send(message);
System.out.println("Sent message successfully....");
}catch (MessagingException mex) {
mex.printStackTrace();
}
}
}
編譯並執行這個程式來發送一封簡單的E-mail:
$ java SendEmail
Sent message successfully....
如果你想傳送一封e-mail給多個收件人,那麼使用下面的方法來指定多個收件人ID:
void addRecipients(Message.RecipientType type,
Address[] addresses)
throws MessagingException
下面是對於引數的描述:
type:要被設定為 TO, CC 或者 BCC,這裡 CC 代表抄送、BCC 代表祕密抄送。舉例:Message.RecipientType.TO
addresses: 這是 email ID 的陣列。在指定電子郵件 ID 時,你將需要使用 InternetAddress() 方法。
傳送一封 HTML E-mail
下面是一個傳送 HTML E-mail 的例子。假設你的本地主機已經連線到網路。
和上一個例子很相似,除了我們要使用 setContent() 方法來通過第二個引數為 "text/html",來設定內容來指定要傳送HTML 內容。
SendHTMLEmail.java 檔案程式碼:
import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;
public class SendHTMLEmail
{
public static void main(String [] args)
{
String to = "[email protected]";
String from = "[email protected]";
String host = "localhost";
Properties properties = System.getProperties();
properties.setProperty("mail.smtp.host", host);
Session session = Session.getDefaultInstance(properties);
try{
MimeMessage message = new MimeMessage(session);
message.setFrom(new InternetAddress(from));
message.addRecipient(Message.RecipientType.TO,
new InternetAddress(to));
message.setSubject("This is the Subject Line!");
message.setContent("<h1>This is actual message</h1>",
"text/html" );
Transport.send(message);
System.out.println("Sent message successfully....");
}catch (MessagingException mex) {
mex.printStackTrace();
}
}
}
編譯並執行此程式來發送HTML e-mail:
$ java SendHTMLEmail
Sent message successfully....
傳送帶有附件的 E-mail
下面是一個傳送帶有附件的 E-mail的例子。假設你的本地主機已經連線到網路。
SendFileEmail.java 檔案程式碼:
import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;
public class SendFileEmail
{
public static void main(String [] args)
{
String to = "[email protected]";
String from = "[email protected]";
String host = "localhost";
Properties properties = System.getProperties();
properties.setProperty("mail.smtp.host", host);
Session session = Session.getDefaultInstance(properties);
try{
MimeMessage message = new MimeMessage(session);
message.setFrom(new InternetAddress(from));
message.addRecipient(Message.RecipientType.TO,
new InternetAddress(to));
message.setSubject("This is the Subject Line!");
BodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setText("This is message body");
Multipart multipart = new MimeMultipart();
multipart.addBodyPart(messageBodyPart);
messageBodyPart = new MimeBodyPart();
String filename = "file.txt";
DataSource source = new FileDataSource(filename);
messageBodyPart.setDataHandler(new DataHandler(source));
messageBodyPart.setFileName(filename);
multipart.addBodyPart(messageBodyPart);
message.setContent(multipart );
Transport.send(message);
System.out.println("Sent message successfully....");
}catch (MessagingException mex) {
mex.printStackTrace();
}
}
}
編譯並執行你的程式來發送一封帶有附件的郵件。
$ java SendFileEmail
Sent message successfully....
使用者認證部分
如果需要提供使用者名稱和密碼給e-mail伺服器來達到使用者認證的目的,你可以通過如下設定來完成:
props.put("mail.smtp.auth", "true");
props.setProperty("mail.user", "myuser");
props.setProperty("mail.password", "mypwd");
e-mail其他的傳送機制和上述保持一致。
需要使用者名稱密碼驗證郵件傳送例項:
本例項以 QQ 郵件伺服器為例,你需要在登入QQ郵箱後臺在"設定"=》賬號中開啟POP3/SMTP服務 ,如下圖所示:

QQ 郵箱通過生成授權碼來設定密碼:

Java 程式碼如下:
SendEmail2.java 檔案程式碼:
import java.util.Properties;
import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
public class SendEmail2
{
public static void main(String [] args)
{
String to = "[email protected]";
String from = "[email protected]";
String host = "smtp.qq.com";
Properties properties = System.getProperties();
properties.setProperty("mail.smtp.host", host);
properties.put("mail.smtp.auth", "true");
Session session = Session.getDefaultInstance(properties,new Authenticator(){
public PasswordAuthentication getPasswordAuthentication()
{
return new PasswordAuthentication("[email protected]", "qq郵箱授權碼");
}
});
try{
MimeMessage message = new MimeMessage(session);
message.setFrom(new InternetAddress(from));
message.addRecipient(Message.RecipientType.TO,
new InternetAddress(to));
message.setSubject("This is the Subject Line!");
message.setText("This is actual message");
Transport.send(message);
System.out.println("Sent message successfully....from itread01.com");
}catch (MessagingException mex) {
mex.printStackTrace();
}
}
}