You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Siegfried Goeschl (JIRA)" <ji...@apache.org> on 2010/05/13 22:44:44 UTC

[jira] Resolved: (EMAIL-73) Format generated by HtmlEmail component causing problem

     [ https://issues.apache.org/jira/browse/EMAIL-73?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Siegfried Goeschl resolved EMAIL-73.
------------------------------------

      Assignee: Siegfried Goeschl
    Resolution: Cannot Reproduce

Added a test case "HtmlEmailTest#testSendWithPlainTextButNoHtmlContent" but I'm unable to reproduce the problem.

> Format generated by HtmlEmail component causing problem
> -------------------------------------------------------
>
>                 Key: EMAIL-73
>                 URL: https://issues.apache.org/jira/browse/EMAIL-73
>             Project: Commons Email
>          Issue Type: Bug
>            Reporter: Rajarshi
>            Assignee: Siegfried Goeschl
>
> We are facing some problems while we are using Apache HtmlEmail component for sending emails. 
>  
> The content of the email that we have as part of our application does not have any <pre> tags defined. The content defined is as below:
>  
> <html><body>
> <p>
> </p>
> <p>
> </p>
> <font face="arial,helvetica,sans-serif" size="2">13-03-2008 <br />
> </font>
> </p>
> Dear Sir/Madam, <br />
> </font><font face="arial,helvetica,sans-serif" size="2">
> <div align="center">
> <strong>This is an test email</strong>
> </div>
> <p>
> <br />
> This is to test the pre tags<br />
> <br />
> </font><font face="arial,helvetica,sans-serif" size="2">Yours faithfully,<br />
> <img><br />
> XYZ</font>
> </p>
> </font>
> </body></html>
>  
>  
> ------------------------------------------------------------------------------------------------------------------------------------------------
> But as soon as we are using the below code 
>  
> if (iataMail.isHtmlFormat()) {
>    HtmlEmail htmlEmail = new HtmlEmail();
>    if (StringUtils.isNotEmpty(iataMail.getMessage())) {
>     htmlEmail.setHtmlMsg(iataMail.getMessage());
>    }
>    // set htmlEmail to email reference
>    email = htmlEmail;
>   }
>  
> the email message is been wrapped with a <pre> tag which leads to the extra spaces in the email content when viewed through any mail client
>  
> We need your help to find out if this is an issue with the Apache mailing component / something that we need to take care in order to resolve this.
> Please also find attached the content of the email been generated with and without pre tags 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.