html-email

Outlook 2013 rendering issue: nested table truncating adjacent text

大兔子大兔子 提交于 2019-12-03 09:19:50
In developing html email newsletters, I often use a structure similar to the following: <table width="244" border="0" cellpadding="0" cellspacing="0" bgcolor="#ffffcc"> <tr> <td> <table border="0" align="left"> <tbody> <tr> <td bgcolor="#FFCCCC">text in the table cell.<br>and another line of text.<br>and a third line.</td> </tr> </tbody> </table> Hello. This is sample text. This is another sentence. Hello. This is sample text. This is another sentence. Hello. This is sample text. This is another sentence.</td> </tr> When viewed in a browser, the result looks like this: but when rendered by

How can I disable the unicode black telephone from being rendered as a red phone on iOS Mail app?

≡放荡痞女 提交于 2019-12-03 09:04:39
I am using the unicode black telephone character (☎ U+260E) in html email. On the iOS Mail app (tested on iPhone and iPad) the black telephone character is rendered as a illustrated as a red emoji phone icon. Note that the unicode white telephone character (☏ U+260F) is not displayed as emoji. I've tried to force the font to "Helvetica" …but no luck. Is there any way to force iOS Mail to use the flat black telephone unicode character? I cannot test this in iOS Mail, and I doubt whether it will work there, but this is the way that a specific glyph variant could be selected. According to the

Facebook Like Button For Email

丶灬走出姿态 提交于 2019-12-03 08:52:20
问题 Ok, so I've looked around a number of different websites but seem to get mixed information. Does anyone have any advice for implementing a Facebook Like button in an HTML email campaign? I have already tried this article but for some reason, clicking the like opens a blank page with another like button. http://emailexpert.org/adding-a-facebook-like-button-to-your-email-template/ Any help would be appreciated. 回答1: Here is how you can add a Facebook Like button, Share Button, and Tweet Buttons

Anchor around table - NOT working in outlook

六眼飞鱼酱① 提交于 2019-12-03 08:41:20
I'm developing a newsletter for Mailchimp with below HTML structure for one of the block - <table border="0" cellpadding="0" cellspacing="0" width="100%" align="center"> <tr> <td valign="top" class="complete-block"> <a href="#" target="_blank"> <table border="0" cellpadding="9" width="100%" align="center" cellspacing="0" class="templateButton display-inline" mc:hideable> <tr> <td align="center" valign="middle" class="templateButtonContent"> Amazon </td> </tr> </table> </a> <a href="#" target="_blank"> <table border="0" cellpadding="9" width="100%" align="center" cellspacing="0" class=

HTML E-mail Layouts Breaking When Forwarded - Make it Survive the Word 2003 HTML Editor

孤人 提交于 2019-12-03 06:25:31
问题 My boss's clients are complaining that when some HTML newsletters are forwarded, their table-based layout breaks. I have determined that this is most likely caused by using the following option in Outlook: Tools > Options > Mail Format > Use Microsoft Office Word 2003 to edit e-mail messages My boss refuses to change this option and is demanding that I figure out a work-around. But I'm plain stumped. The e-mail that is breaking when forwarded with this option on is at http://www.egusts.com

extra white space between tables in html email for gmail client

巧了我就是萌 提交于 2019-12-03 05:53:26
My code is at http://jsfiddle.net/user1212/G86KE/4/ The problem is in gmail it leaves an extra white space between 2 tables inside the same cell. I have tried display:block; margin:0; padding:0; line-height:0; However , it does not seem to go away. Is there a fix to this? Anders Arpi Styling HTML mails is horrible. A few tips: border-spacing:0; /*this should fix the spacing problem*/ You need to apply this to all the tables you are using, so you should include it in a <style> block at the top like so: <head> <style> table {border-spacing: 0;} </style> </head> (sorry for the bad formatting,

No Activity found to handle Intent action.VIEW when clicking email link

别来无恙 提交于 2019-12-03 05:47:01
I got this new crash exception after the newest app update. It seems to not point anywhere. Would anyone be able to tell what the issue is? It looks like a possible email-formatting issue due to this: dat=mailto:xxxx@xxxxxxxxx.xxx (has extras) ....but I am not sure I have any errors in emails. android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=mailto:xxxx@xxxxxxxxx.xxx (has extras) } at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1512) at android.app.Instrumentation.execStartActivity(Instrumentation

Safe markup for HTML email

霸气de小男生 提交于 2019-12-03 05:46:27
Email clients are limited in their HTML display capabilities. What HTML markup and CSS styles is it safe to use in HTML-formatted email? In general you want to stick to 10+ years old HTML. Avoid trying to link to external stylesheets and avoid styles in the HEAD. Use inline styles. Use HTML tables for layout. Industry standard is to stick to width of 600px or less for your email content. This is a good guide: http://kb.mailchimp.com/article/how-to-code-html-emails Some useful links on this subject detailing which clients support what markup and style: http://www.campaignmonitor.com/css/ http:/

Remove spacing between table cells and rows

喜夏-厌秋 提交于 2019-12-03 05:25:36
问题 I'm designing an HTML email template, which forces me to use tables. In the code below, I'm having trouble (1) removing the spacing below the placeholder image and (2) removing the space between the image and the caption. Here's a screenshot of how it looks in Chrome 15 on OS X 10.6.8.: <!DOCTYPE HTML> <html> <head> <title>Email Template</title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> </head> <body> <table style="border: 1px solid #b50b32; margin: 30px auto; width

HTML formatted email not showing up at all in Gmail but is in other mail clients

て烟熏妆下的殇ゞ 提交于 2019-12-03 04:04:50
问题 I'm currently sending html formatted emails from PHP's mail() function and checking them simply to make sure they are showing up as HTML (formatting aside, I'm well aware that the formatting will vary (probably drastically) from client to client). They are displaying as HTML in the Apple Mail client as well as on my iPhone. However, Gmail simply refuses to display it as HTML as all. And by that I don't mean it is formatted incorrectly, it just simply isn't using HTML it appears. The weird