java 發郵件 例子(HTML內容) 使用org.apache.commons.mail

來源:互聯網
上載者:User
 package mail;import java.io.UnsupportedEncodingException;
import java.net.MalformedURLException;
import java.net.URL;import javax.mail.internet.MimeUtility;import org.apache.commons.mail.EmailAttachment;
import org.apache.commons.mail.EmailException;
import org.apache.commons.mail.HtmlEmail;
import org.apache.commons.mail.MultiPartEmail;
import org.apache.commons.mail.SimpleEmail;public class Send3 {
 public Send3(){}
 // 需要的jar包5個:commons-email-1.2.jar commons-email-1.2-javadoc.jar
 // commons-email-1.2-sources.jar mail.jar  activation.jar
 public static void main(String[] args) {
  send();
 } // QQ郵箱對應的pop3和smtp伺服器位址為:pop3:pop.qq.com;
 // smtp:smtp.qq.com,請參考

 public static void send() {
  
  try {
   HtmlEmail   email = new HtmlEmail();
   email.setTLS(true);
   email.setHostName("smtp.qq.com"); // 這裡是發送伺服器的名字
   email.setAuthentication("449333333@qq.com", "郵箱密碼");
   

   email.addTo("lu@yahoo.com.cn", "rec"); // 接收方
   email.setFrom("449333333@qq.com"); // 發送方
   email.setSubject("Java發送郵件測試"); // 標題
   email.setCharset("GB2312"); // 設定Charset
   email.setMsg("這是一封Java程式發出的測試郵件,帶附件。"); // 內容
   
   // embed the image and get the content id
   URL url;
   url = new URL("http://img.baidu.com/img/image/ilogob.gif");
   
   String cid = email.embed(url, "baidu logo");
   email.setHtmlMsg("<html><a href='http://www.baidu.com'>baidu.com</a> <img src=\"cid:" + cid
     + "\"><br><P>haha</P></html>");
   
   email.send();//發送
   System.out.println("郵件發送成功");
  } catch (EmailException e) {
   e.printStackTrace();
  }catch (MalformedURLException e) {
   e.printStackTrace();
  }
 }
}
/*
 * 有的郵箱需要開啟POP3/SMTP服務,例如本例的qq郵箱,在測試時彈出需要開啟此服務的 提示(qq郵箱發來的),進入郵箱的設定,開啟就行了
 */

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.