apache-commons-email是对mail的一个封装,所以使用起来确实是很方便。特别的,官网上的tutorial也是极其的简单。但是我也仍然是遇到了没有解决的问题。

jar包的添加

  • mail.jar && activation
  • apache-commons-email.jar

一开始我没有添加上面的mail.jar ,然后就导致在编码的过程中,各种报错。

SimpleEmail实例

package email;

import org.apache.commons.mail.DefaultAuthenticator;
import org.apache.commons.mail.Email;
import org.apache.commons.mail.SimpleEmail;
import org.junit.Test;

public class SimpleEmailTest {

    @Test
    public void simple() throws Exception {
        final String HOSTNAME = "smtp.163.com";
        try {
            Email email = new SimpleEmail();
            email.setHostName(HOSTNAME);
            // email.setSmtpPort(465);
            email.setAuthenticator(new DefaultAuthenticator("15640SSS27", "XXXXXXX"));
            email.setSSLOnConnect(true);
            email.setFrom("1SSSSSS27@163.com");
            email.setSubject("Test Mail By Commons-Emial");
            email.setMsg("Congratulations!\nYou have been admitted, so come here and join us ! :-)");
            email.addTo("106SSSSSS@qq.com");
            email.send();
            System.out.println("邮件已成功发送!");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}

带附件实例(图片和URL)

带图片的

@Test
    public void test() throws Exception {

        // 添加一个附件
        EmailAttachment attachment = new EmailAttachment();
        attachment.setPath("E:\\Code\\Java\\apache-commons-email\\src\\email\\be.png");
        attachment.setDisposition(EmailAttachment.ATTACHMENT);
        attachment.setDescription("one big beauty!");
        attachment.setName("beauty.png");

        // 实例化邮件
        MultiPartEmail email = new MultiPartEmail();
        email.setHostName("smtp.163.com");
        email.setAuthenticator(new DefaultAuthenticator("15   xxxx27", "gxuxxxxxxx4"));
        email.setSSLOnConnect(true);
        email.addTo("dsds632@qq.com");
        email.setFrom("15dsdsds027@163.com");
        email.setSubject("The Beauty Picture!");
        email.setMsg("Here is an email with a beauty!");

        // 把附件添加到邮件
        email.attach(attachment);

        // 发邮件
        email.send();

        System.out.println("邮件发送成功!");
    }

带URL的

@Test
    public void testURL() throws Exception {
        // 添加一个附件
                EmailAttachment attachment = new EmailAttachment();
                attachment.setURL(new URL("http://www.apache.org/images/asf_logo_wide.gif"));
                attachment.setDisposition(EmailAttachment.ATTACHMENT);
                attachment.setDescription("Apache Logo!");
                attachment.setName("ApacheLogo");

                // 实例化邮件
                MultiPartEmail email = new MultiPartEmail();
                email.setHostName("smtp.163.com");
                email.setAuthenticator(new DefaultAuthenticator("15ssss7", "gssssss4"));
                email.setSSLOnConnect(true);
                email.addTo("10ssdsds@qq.com");
                email.setFrom("15dsdsdsdsds@163.com");
                email.setSubject("The Beauty Picture!");
                email.setMsg("Here is an email with a beauty!");

                // 把附件添加到邮件
                email.attach(attachment);

                // 发邮件
                email.send();

                System.out.println("邮件发送成功!");
    }

下面的是嵌入数据,但是却没能成功

package email;

import java.net.URL;

import org.apache.commons.mail.DefaultAuthenticator;
import org.apache.commons.mail.HtmlEmail;
import org.junit.Test;

public class WithHtmlTest {

    @Test
    public void sendHTMLFormattedEmail() throws Exception {
        try {
            // 实例化邮件
            HtmlEmail email = new HtmlEmail();
            email.setHostName("smtp.163.com");
            email.setAuthentication("1dsadsadsa27@163.com", "gdsadsaddsadsd");
            email.setSSLOnConnect(true);
            email.setSSL(true);
            email.addTo("1adas2@qq.com", "小郭");
            email.setFrom("156dsadas@163.com", "Me");
            email.setSubject("Test email with inline image");

            // embed the image and get the content id
            URL url = new URL("http://www.apache.org/images/asf_logo_wide.gif");
            String cid = email.embed(url, "Apache Logo!");

            // 设置html的内容
            email.setHtmlMsg("<html>The apache logo - <img src=\"cid:" + cid + "\"></html>");

            // 设置text的内容
            email.setTextMsg("Your email client doesn't support HTML messages!");

            // 发邮件
            email.send();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}

报错的信息如下:

java.lang.NoSuchMethodError: javax.mail.internet.MimeBodyPart.setText(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    at org.apache.commons.mail.HtmlEmail.build(HtmlEmail.java:586)
    at org.apache.commons.mail.HtmlEmail.buildMimeMessage(HtmlEmail.java:510)
    at org.apache.commons.mail.Email.send(Email.java:1447)
    at email.WithHtmlTest.sendHTMLFormattedEmail(WithHtmlTest.java:35)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)

如果你也遇到了这个问题,而且解决了。欢迎留言!我会及时的来修改博客的!

Apache commons email 使用过程中遇到的问题的更多相关文章

  1. 使用Apache Commons Email 发生邮件

    Apache Commons Email的Maven依赖 <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-e ...

  2. 使用Apache commons email发送邮件

    今天研究了以下怎么用java代码发送邮件,用的是Apache的commons-email包. 据说这个包是对javamail进行了封装,简化了操作. 这里讲一下具体用法吧 一.首先你需要有邮箱账号和一 ...

  3. Apache Commons Email 使用网易企业邮箱发送邮件

    最近使用HtmlEmail 发送邮件,使用网易企业邮箱,发送邮件,死活发不出去!原以为是网易企业邮箱,不支持发送邮箱,后面经过研究发现,是apache htmlEmail 的协议导致,apache E ...

  4. org.apache.commons.lang3.StringUtils类中isBlank和isEmpty方法的区别

    相信很多java程序员在写代码的时候遇到判断某字符串是否为空的时候会用到StringUtils类中isBlank和isEmpty方法,这两个方法到底有什么区别呢?我们用一段代码来阐述这个区别吧: @T ...

  5. 一篇关于apache commons类库的详解

    1.1. 开篇 在Java的世界,有很多(成千上万)开源的框架,有成功的,也有不那么成功的,有声名显赫的,也有默默无闻的.在我看来,成功而默默无闻的那些框架值得我们格外的尊敬和关注,Jakarta C ...

  6. 一篇关于apache commons类库的详解[转]

    1.1. 开篇 在Java的世界,有很多(成千上万)开源的框架,有成功的,也有不那么成功的,有声名显赫的,也有默默无闻的.在我看来,成功而默默无闻的那些框架值得我们格外的尊敬和关注,Jakarta C ...

  7. apache commons类库的学习

    原文地址http://www.tuicool.com/articles/iyEbquE 1.1. 开篇 在Java的世界,有很多(成千上万)开源的框架,有成功的,也有不那么成功的,有声名显赫的,也有默 ...

  8. ysoserial分析【一】 之 Apache Commons Collections

    目录 前言 基础知识 Transformer 利用InvokerTransformer造成命令执行 Map TransformedMap LazyMap AnnotationInvocationHan ...

  9. apache commons io包基本功能

    1. http://jackyrong.iteye.com/blog/2153812 2. http://www.javacodegeeks.com/2014/10/apache-commons-io ...

随机推荐

  1. 微信的自动回复&接入聊天机器人

    今天偶尔发现了一个有趣的python库--itchat,可以实现微信的自动回复.防撤回,结合图灵机器人还能实现聊天机器人的作用 简单介绍一下配置与工具 win7旗舰版  pycharm  python ...

  2. [LOJ 6270]数据结构板子题

    Description 有n个区间,第i个区间是[li,ri],它的长度是ri−li. 有q个询问,每个询问给定L,R,K,询问被[L,R]包含的且长度不小于K的区间数量. 你想,像这种板子题,你随手 ...

  3. [ZJOI2009]染色游戏

    Description 一共n × m 个硬币,摆成n × m 的长方形.dongdong 和xixi 玩一个游戏, 每次可以选择一个连通块,并把其中的硬币全部翻转,但是需要满足存在一个 硬币属于这个 ...

  4. NOI2006 郁闷的出纳员

    题目描述 OIER公司是一家大型专业化软件公司,有着数以万计的员工.作为一名出纳员,我的任务之一便是统计每位员工的工资.这本来是一份不错的工作,但是令人郁闷的是,我们的老板反复无常,经常调整员工的工资 ...

  5. ●UVA 11796 Dog Distance

    题链: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem& ...

  6. hdu 5438(拓扑+bfs)

    题意:建图,删掉所有连接点小于2的点,直到不能删为止,问最后剩余的联通块中,点的数量是奇数的联通块中的点的权值和. 思路:拓扑删点,bfs计算 #include <iostream> #i ...

  7. 在QEMU中调试ARM程序【转】

    转自:http://linuxeden.com/html/develop/20100820/104409.html 最近我想调试一个运行在QEMU模拟ARM系统中的Linux程序.我碰到过一些麻烦,因 ...

  8. 【完整项目】使用Scrapy模拟HTTP POST,获取完美名字

    1. 背景 最近有人委托我给小孩起个名字,说名字最好符合周易五行生克理论,然后给了我个网址,说像是这个网站中的八字测名,输入名字和生辰八字等信息,会给出来这个名字的分数和对未来人生的预测.当父母的自然 ...

  9. 解决win10 VC++6.0 应用程序无法正常运行 0xc0000142

    废话不多说,无法正常运行原因就是win10不兼容中文版的vc,解决方法就是一句话,用英文版的msdev.exe替换中文版的msdev.exe,msdev.exe是vc的启动程序.直接上来教你怎么做.废 ...

  10. Linux基本知识总结

    一.Linux的基本介绍 起源:大家知道先有Unix,后有的linux就行了,其他的细节可以自己查阅资料. 特点:开源!!! 安全(Linux的病毒远少于window). 免费(商业公司最喜欢这一点) ...