Return-Path: Delivered-To: apmail-commons-issues-archive@locus.apache.org Received: (qmail 81547 invoked from network); 13 Feb 2008 05:20:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Feb 2008 05:20:42 -0000 Received: (qmail 23922 invoked by uid 500); 13 Feb 2008 05:20:35 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 23854 invoked by uid 500); 13 Feb 2008 05:20:35 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 23845 invoked by uid 99); 13 Feb 2008 05:20:35 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Feb 2008 21:20:35 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Feb 2008 05:19:47 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id EDAC3714074 for ; Tue, 12 Feb 2008 21:20:07 -0800 (PST) Message-ID: <25620315.1202880007971.JavaMail.jira@brutus> Date: Tue, 12 Feb 2008 21:20:07 -0800 (PST) From: "Chris Beaumont (JIRA)" To: issues@commons.apache.org Subject: [jira] Commented: (EMAIL-69) HtmlEmail generated email don't display in Macos X Mail.app In-Reply-To: <10647969.1194086990606.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/EMAIL-69?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12568431#action_12568431 ] Chris Beaumont commented on EMAIL-69: ------------------------------------- Sadly, patch is incomplete: now it is broken when you have an embed'ded image ... email.setHostName("smtp-server...."); email.addTo("chris@...", "John Doe"); email.setFrom("me@apache.org", "Me"); email.setSubject("Test email with inline image"); URL url = new URL("http://www.apache.org/images/asf_logo_wide.gif"); String cid = email.embed(url, "Apache logo"); email.setHtmlMsg("TESTING
TESTING
The apache logo - "); email.setTextMsg("Your email client does not support HTML messages"); email.send(); This will display the Apache logo all by itself (since we have a multipart/alternative FIRST). Assignment of boolean in the patch should read: boolean useAlternative = (EmailUtils.isNotEmpty(this.html) && EmailUtils.isNotEmpty(this.text) && (this.inlineEmbeds.size() == 0) // This was lost from Tobias's post ); [i.e., use alternative when we have text AND html but NO embed (if embed, then it is covered by the sub-container) ] > HtmlEmail generated email don't display in Macos X Mail.app > ----------------------------------------------------------- > > Key: EMAIL-69 > URL: https://issues.apache.org/jira/browse/EMAIL-69 > Project: Commons Email > Issue Type: Bug > Affects Versions: 1.1 > Environment: Macos X 10.4 with Mail.app > Reporter: Numa Schmeder > Attachments: EMAIL-69-fix.patch, EMAIL-69-test.patch > > > Hi, > The mail generated by HtmlEmail seems boggus in its mime layout. Mail.app doesn't recognize and display the html part when you send a mail with a Html and Text part as alternative. > For example this email will only display the text part and not the html part on Mail.app: > HtmlEmail htmlEmail = new HtmlEmail(); > htmlEmail.setHtmlMsg(htmlMessage); > htmlEmail.setTextMsg(textMessage); > email.setFrom(from,fromName); > email.addTo(to, toName); > email.setSubject(subject); > email.send(); > > But this email will disply correctly the html in Mail.app: > HtmlEmail htmlEmail = new HtmlEmail(); > htmlEmail.setHtmlMsg(htmlMessage); > email.setFrom(from,fromName); > email.addTo(to, toName); > email.setSubject(subject); > email.send(); > The bug might be I think in the mime layout, I looked at the raw email source and the mime layout is as follow: > MIME-Version: 1.0 > Content-Type: multipart/related; > boundary="----=_Part_0_11727281.1194085710604" > ------=_Part_0_11727281.1194085710604 > Content-Type: text/plain; charset=UTF-8 > Content-Transfer-Encoding: quoted-printable > Ch=C3=A8re Mme Dupont ,=20 > Text Blah blah > ------=_Part_0_11727281.1194085710604 > Content-Type: text/html; charset=UTF-8 > Content-Transfer-Encoding: quoted-printable > w3.org/TR/html4/loose.dtd"> > > > > = > =20 > =09 My Email > > > > Ch=C3=A8re Mme Dupont ,=20 >
> Blah Blah html content > > > ------=_Part_0_11727281.1194085710604-- > This is wrong, I am not an expert but shouldn't it be multipart/alternative ? In all other html email I have checked the mime layout uses multipart/alternative. > I hop there is a quick fix for this. > Thank you for your help. > Numa -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.