我的 Web 应用程序向用户发送基于 HTML 的电子邮件。
我创建了一个 HTML 电子邮件模板(基于 MailChimp 提供的模板,该模板被认为可以在任何浏览器/电子邮件客户端中工作)。
当我使用 发送它SendGrid
时,它到达并在我的Apple iPhone 4上完美显示,但当我在Gmail/Google Apps(同时使用 Firefox 和 Google Chrome)中测试时无法正确显示。
无法正常工作的 HTML 代码段:
<tr>
<td align="center" valign="top" style="padding-top:0;">
<table border="0" cellpadding="15" cellspacing="0" class="templateButton3">
<tr>
<td valign="middle" class="templateButtonContent">
<div mc:edit="std_content01">
<a href="http://www.url.com/blah" target="_blank">Button Text</a>
</div>
</td>
</tr>
</table>
</td>
</tr>
这里应用的 CSS 是:
.templateButton3{
-moz-border-radius:3px;
-webkit-border-radius:3px;
/*@editable*/ background-color:#d34843;
/*@editable*/ border:0;
border-collapse:separate !important;
border-radius:3px;
}
我在这里做错了什么?这是使用 Google Apps/Gmail 的恼人副作用吗?