[
https://issues.apache.org/jira/browse/EMAIL-80?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Siegfried Goeschl resolved EMAIL-80.
------------------------------------
Resolution: Fixed
With the help of the commons community we did some field testing to verify that
the HTMLEmail is properly created and displayed
Got positive feedback for
+) Apple Mail 2.1.3 on Mac OS X 10.4
+) Thunderbird 2.0.0.19 on Mac OS X 10.5
+) Thunderbird 2.0.0.19 on Ubuntu 8.10
+) Outlook 2007 on Win XP Pro 64 bit
+) Evolution 2.24.2 on Ubuntu 8.10
+) OWA (full on IE 7, cut-down on Firefox)
+) GMail
+) Yahoo! Mail
We have problems with 1.9.9 (KDE 3.5.9) but this could be a general issue with
KMail
> Message incorrectly displayed on outlook and Outlook Web access
> ---------------------------------------------------------------
>
> Key: EMAIL-80
> URL: https://issues.apache.org/jira/browse/EMAIL-80
> Project: Commons Email
> Issue Type: Bug
> Affects Versions: 1.1
> Reporter: Etienne Jouvin
> Assignee: Siegfried Goeschl
> Priority: Minor
> Fix For: 1.2
>
>
> Hello.
> I try to write HTML Email with version 1.1 and 1.0.
> With version 1.1, I found that the email was not correctly display when there
> is no image embed into the mail content. Outlook web access only display the
> text message and the HTML content is attached as an attachment.
> But, when there is at least one image, the message is corerctly displayed.
> This does not happends with version 1.0.
> Here is the source code used:
> HtmlEmail email = new HtmlEmail();
> email.setHostName("192.32.16.76");
> email.setFrom("[email protected]");
> email.addTo("[email protected]");
> String s_RessourceName = "support.gif";
> URL url = TestLoader.class.getResource(s_RessourceName);
> StringBuffer sb_MsgContent = new StringBuffer();
> sb_MsgContent.append("<html><body><center><b>mon message pour voir ma classe
> sans image</b></center>");
> sb_MsgContent.append("</body></html>");
> email.setHtmlMsg(sb_MsgContent.toString());
> email.setTextMsg("Your email client does not support HTML messages");
> email.send();
> And with image
> HtmlEmail email = new HtmlEmail();
> email.setHostName("192.32.16.76");
> email.setFrom("[email protected]");
> email.addTo("[email protected]");
> String s_RessourceName = "support.gif";
> URL url = TestLoader.class.getResource(s_RessourceName);
> String s_RessourceId = email.embed(url, "Support logo");
> StringBuffer sb_MsgContent = new StringBuffer();
> sb_MsgContent.append("<html><body><center><b>mon message pour voir ma classe
> sans image</b></center>");
> sb_MsgContent.append("<p><img
> src=\"cid:").append(s_RessourceId).append("\"></p>");
> sb_MsgContent.append("</body></html>");
> email.setHtmlMsg(sb_MsgContent.toString());
> email.setTextMsg("Your email client does not support HTML messages");
> email.send();
> Regards
> Etienne Jouvin
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.