mashiguang

          小馬快跑

            BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
            20 隨筆 :: 0 文章 :: 60 評論 :: 0 Trackbacks

          使用commons mail時需要的jar包:
          1,commons-email-1.1.jar
          2,mail.jar
          3,activation.jar
          (在web應用里只需要commons-email包)

          發送簡單的文字郵件:

          SimpleEmail email = new SimpleEmail();

          email.setHostName(
          "smtp.sina.com");
          email.setAuthentication(
          "username""password");//在郵件服務商處注冊的用戶名和密碼
          email.addTo("mailTo@163.com");
          email.setFrom(
          "username@sina.com""alias");

          email.setCharset(
          "UTF-8");//gbk或gb2312,只要支持中文就行
          email.setSubject("title");
          email.setMsg(
          "content");
          email.send();

          發送帶附件的郵件:
          // Create the attachment
          EmailAttachment attachment = new EmailAttachment();
          attachment.setPath(
          "mypictures/john.jpg");
          attachment.setDisposition(EmailAttachment.ATTACHMENT);
          attachment.setDescription(
          "Picture of John");
          attachment.setName(
          "John");

          // Create the email message
          MultiPartEmail email = new MultiPartEmail();
          email.setHostName(
          "mail.myserver.com");
          email.setAuthentication(
          "username""password");
          email.addTo(
          "jdoe@somewhere.org""John Doe");
          email.setFrom(
          "me@apache.org""Me");
          email.setCharset(
          "UTF-8");
          email.setSubject(
          "The picture");
          email.setMsg(
          "Here is the picture you wanted");

          // add the attachment
          email.attach(attachment);

          // send the email
          email.send();

          創建多個EmailAttachment對象,并調用MultiPartEmail.attach();就可以發送多個附件.

          發送HTML格式的郵件:

          發送html格式的郵件和簡單郵件的區別就在創建HtmlEmail對象
          并用email.setHtmlMsg(String)或email.setMsg(String)把含有html標簽的字符串賦給email對象.
          HtmlEmail對象還有一個setTextMsg(String)方法,這個方法參數里的html標簽會被當做普通字符處理,不會被解析成html元素.
          更詳細內容可以看apache commons-email的用戶指南.

          posted on 2007-11-01 16:51 mashiguang 閱讀(1531) 評論(4)  編輯  收藏 所屬分類: java web開發

          評論

          # re: apache commons-email 2007-11-01 16:54 mashiguang
          在使用中碰到的問題:
          發送HTML格式的郵件時同時發送附件的話,郵件內容會被當作附件處理,也就是說如果你發了兩個附件和一篇HTML格式的正文,收件人會收到三個附件,前兩個是正常的附件,HTML格式的正文變成了第三個附件,碰到同樣問題的朋友請指點.   回復  更多評論
            

          # re: apache commons-email 2007-12-20 15:02 fasdf
          fasdfasdfasdfsadf  回復  更多評論
            

          # re: apache commons-email 2008-01-02 15:21 ajax_milan
          文中提到的發送中文的方法不行,建議使用如下方法:
          1.去掉email.setCharset("UTF-8");
          2.不使用email.setMsg("Here is the picture you wanted");
          3.使用email.setContent("這是一個測試","text/plain;charset=GBK");  回復  更多評論
            

          # re: apache commons-email[未登錄] 2014-06-17 10:57 w
          setMsg和setHtmlMsg有什么區別啊?  回復  更多評論
            

          主站蜘蛛池模板: 金乡县| 沁阳市| 阜城县| 达尔| 西昌市| 拉孜县| 沙雅县| 新晃| 松潘县| 阳信县| 舞钢市| 公主岭市| 二连浩特市| 顺平县| 桃园县| 宜城市| 武平县| 和平区| 湘阴县| 如皋市| 茶陵县| 西城区| 绥滨县| 胶南市| 呈贡县| 澄城县| 时尚| 科尔| 四平市| 公主岭市| 鸡东县| 贵溪市| 滨海县| 交城县| 迁西县| 泽库县| 浏阳市| 清徐县| 巫溪县| 阳信县| 区。|