今天在研究javamail發信的過程中,出現了一些小問題,現總結如下,以免后來者走些不必要的彎路,先把完整的能夠正常運行的代碼示例粘貼如下:
發郵件源代碼:
package com.hyq.test;
import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;
public class MailExample {
? public static void main (String args[]) throws Exception {
???
??? String host = "smtp.163.com";?? //發件人使用發郵件的電子信箱服務器
??? String from = "你自己的電子信箱";??? //發郵件的出發地(發件人的信箱)
??? String to = "收件人信箱";?? //發郵件的目的地(收件人信箱)
??? // Get system properties
??? Properties props = System.getProperties();
??? // Setup mail server
??? props.put("mail.smtp.host", host);
??? // Get session
??? props.put("mail.smtp.auth", "true"); //這樣才能通過驗證
??? MyAuthenticator myauth = new MyAuthenticator("你自己的電子信箱", "你自己的信箱密碼");
??? Session session = Session.getDefaultInstance(props, myauth);
//??? session.setDebug(true);
??? // Define message
??? MimeMessage message = new MimeMessage(session);
???
??? // Set the from address
??? message.setFrom(new InternetAddress(from));
??? // Set the to address
??? message.addRecipient(Message.RecipientType.TO,
????? new InternetAddress(to));
??? // Set the subject
??? message.setSubject("測試程序!");
??? // Set the content
??? message.setText("這是用java寫的發送電子郵件的測試程序!");
??? message.saveChanges();
????? Transport.send(message);
????
? }
}
校驗發信人權限的方法
package com.hyq.test;
import javax.mail.PasswordAuthentication;
class MyAuthenticator
????? extends javax.mail.Authenticator {
??? private String strUser;
??? private String strPwd;
??? public MyAuthenticator(String user, String password) {
????? this.strUser = user;
????? this.strPwd = password;
??? }
??? protected PasswordAuthentication getPasswordAuthentication() {
????? return new PasswordAuthentication(strUser, strPwd);
??? }
? }
注意:上面的事例僅為使用163信箱時發送電子郵件的方法,因為使用的host為:smtp.163.com,如源代碼中:String host = "smtp.163.com";?? //發件人使用發郵件的電子信箱服務器,如果使用其它的電子郵件發送,就必須在其郵件服務器上查找相應的電子郵件服務器,例如搜狐就要使用smtp.sohu.com,具體情況具體對待,都可以從所使用的郵件服務器上獲得的。如果沒有使用host ,也就是說,沒有進行props.put("mail.smtp.host", host);設置,那么就會拋javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25;的異常。當然了,如果你沒有正確配置,這個異常仍然會被拋出的。
有些郵件服務系統是不需要驗證發件人的授權的,所以可以很簡單的使用
??? Session session = Session.getDefaultInstance(props, null);
???????????? 而不必使用
??? props.put("mail.smtp.auth", "true");?
??? MyAuthenticator myauth = new MyAuthenticator("你自己的電子信箱", "你自己的信箱密碼");
??? Session session = Session.getDefaultInstance(props, myauth);
就可以發送電子郵件了,這個多為一些企事業單位的內部電子信箱系統。
但是對于很多門戶網站上的電郵系統,如:163,sohu,yahoo等等,如果仍然簡單的這樣使用就會拋
com.sun.mail.smtp.SMTPSendFailedException: 553 authentication is required,smtp8,wKjADxuAyCAfmnZE8BwtIA==.32705S2
?at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1388)
?at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:959)
?at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:583)
?at javax.mail.Transport.send0(Transport.java:169)
?at javax.mail.Transport.send(Transport.java:98)
這樣的異常,要求你必須進行授權校驗,它的目的就是阻止他人任意亂發郵件,也算是為了減少垃圾郵件的出現吧。這時候,我們就要使用
??? props.put("mail.smtp.auth", "true");?
??? MyAuthenticator myauth = new MyAuthenticator("你自己的電子信箱", "你自己的信箱密碼");
??? Session session = Session.getDefaultInstance(props, myauth);
這里還有一個特別注意的事情:在你使用Session.getDefaultInstance時,一定要將??? props.put("mail.smtp.auth", "true");?置為true,它默認的是false,如果你沒有做這一步,雖然你使用了Session.getDefaultInstance(props, myauth);,你自己也確實??? MyAuthenticator myauth = new MyAuthenticator("你自己的電子信箱", "你自己的信箱密碼");但是它仍然會拋出
com.sun.mail.smtp.SMTPSendFailedException: 553 authentication is required,smtp8,wKjADxJA2SBrm3ZEFv0gIA==.40815S2
?at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1388)
?at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:959)
?at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:583)
?at javax.mail.Transport.send0(Transport.java:169)
?at javax.mail.Transport.send(Transport.java:98)
這樣的異常。我就在這一步費了好長時間,后來才發現了這個問題,很是郁悶。不過還好,總算解決了。
其實上面的做法只是比較簡單的一種,也有很多其它的寫法,如:
Properties props = System.getProperties();可以使用
Properties props = new Properties();來代替。
Transport.send(message);可以使用下面的代碼來代替
????? String username = "你的電子信箱用戶名";
????? String password = "你的電子信箱密碼";
????? message.saveChanges(); //??? implicit with send()
????? Transport transport = session.getTransport("smtp");
????? transport.connect("mail.htf.com.cn", username, password);
????? transport.sendMessage(message, message.getAllRecipients());
????? transport.close();
這種方法在同時發送多封電子郵件時比較有用。
還有一些具體的相關概念,可以查看相關的官方文檔,在我查詢資料時,發現了一篇文章寫得相當仔細,可以加以參考:http://www.matrix.org.cn/resource/article/44/44101_JavaMail.html
另附上使用org.apache.commons.mail進行發電子郵件的示例:
import org.apache.commons.mail.SimpleEmail;
import org.apache.commons.mail.*;
public class TestCommon {
? public TestCommon() {
? }
? public static void main(String[] args){
??? SimpleEmail email = new SimpleEmail();
??? email.setHostName("smtp.163.com");//設置使用發電子郵件的郵件服務器
??? try {
????? email.addTo("收件人信箱");
????? email.setAuthentication("發件人信箱","發件人信箱密碼");
????? email.setFrom("發件人信箱");
????? email.setSubject("Test?apache.commons.mail message");
????? email.setMsg("This is a simple test of commons-email");
????? email.send();
??? }
??? catch (EmailException ex) {
????? ex.printStackTrace();
??? }
? }
}