使用commons-email生成的附件+ Html在某些电子邮件客户端中不显示

时间:2009-11-30 18:20:05

标签: java email html-email apache-commons-email

我一直在使用来自apache commons-mail的org.apache.commons.mail.HtmlEmail类。最终,一些用户抱怨电子邮件显示在他们的电子邮件客户端上没有附件(Outlook 2007和Lotus Notes中报告的问题)。

一位用户甚至分析了问题并向我发送了以下链接:

http://support.microsoft.com/kb/961940

我已经读过其他人:由于这个问题,已经切换到原始的javax.mail API。

以下是附加文件的代码部分:

private void dummy(List<Map<String, byte[]>> attachments, String htmlText) throws EmailException {
    HtmlEmail memail;

    memail = new HtmlEmail();
    memail.setHtmlMsg(htmlText);
    memail.setTextMsg("Your mail client doesn't recognize HTML e-mails.");

    Iterator<Map<String, byte[]>> iter = attachments.iterator();
    while (iter.hasNext()) {
        Map<java.lang.String, byte[]> map = iter.next();

        Set<Entry<String, byte[]>> entries = map.entrySet();
        for (Entry<String, byte[]> entry : entries) {
            try {
                ByteArrayDataSource bads = new ByteArrayDataSource(
                        entry.getValue(), null);
                memail.embed(bads, entry.getKey());
//              memail.attach(bads, entry.getKey(), ""); // if I use this, the html message 
                        // gets displaced
            } catch (IOException e) {
                throw new EmailException(e);
            }
        }
    }
    // ... continues
}

以前有没有人经历过这个?

提前多多感谢。

Jonathas的

1 个答案:

答案 0 :(得分:2)

似乎公共电子邮件版本1.1存在问题。升级到1.2似乎解决了这个问题。