电子邮件通讯:更改电子邮件输出的颜色在 Outlook 中不起作用
Email newsletter: changing color of email output doesn't works in Outlook
我创建了一份简报,它在 Outlook 中以错误的颜色显示电子邮件地址。在网络版中,电子邮件地址显示为白色没有问题,在 Outlook 中显示为蓝色。
这是代码的一部分:
<div class="column" style="width:100%;max-width:320px;display:inline-block;vertical-align:top;">
<table border="0" cellpadding="0" cellspacing="0" style="border-spacing:0;font-family: roboto, Arial, sans-serif;color:#ffffff;background-color:#393939;" width="100%">
<tbody>
<tr>
<td class="inner" style="padding-top: 5px; padding-bottom: 5px; padding-right: 20px; padding-left: 20px; font-size:0">
<table border="0" cellpadding="0" cellspacing="0" class="contents" style="border-spacing:0;font-family: roboto, Arial, sans-serif;color:#ffffff !important;width:100%;font-size:11px;text-align:left;text-decoration: none;">
<tbody>
<tr>
<td color="color: #ffffff" style="padding:0; color: #ffffff !important">Ipsum Lorem:<br />
<div style="color: #ffffff; font-family: roboto, Arial, sans-serif;">{$EMAIL}</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
有人知道怎么改吗?
提前致谢
Word不支持background
属性(只有在有URL的情况下)。事实上,Outlook 使用 Word 来呈现 HTML 个正文。您可以在以下文章中阅读有关受支持和不受支持的 HTML 元素和 CSS 属性的更多信息:
我创建了一份简报,它在 Outlook 中以错误的颜色显示电子邮件地址。在网络版中,电子邮件地址显示为白色没有问题,在 Outlook 中显示为蓝色。
这是代码的一部分:
<div class="column" style="width:100%;max-width:320px;display:inline-block;vertical-align:top;">
<table border="0" cellpadding="0" cellspacing="0" style="border-spacing:0;font-family: roboto, Arial, sans-serif;color:#ffffff;background-color:#393939;" width="100%">
<tbody>
<tr>
<td class="inner" style="padding-top: 5px; padding-bottom: 5px; padding-right: 20px; padding-left: 20px; font-size:0">
<table border="0" cellpadding="0" cellspacing="0" class="contents" style="border-spacing:0;font-family: roboto, Arial, sans-serif;color:#ffffff !important;width:100%;font-size:11px;text-align:left;text-decoration: none;">
<tbody>
<tr>
<td color="color: #ffffff" style="padding:0; color: #ffffff !important">Ipsum Lorem:<br />
<div style="color: #ffffff; font-family: roboto, Arial, sans-serif;">{$EMAIL}</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
有人知道怎么改吗?
提前致谢
Word不支持background
属性(只有在有URL的情况下)。事实上,Outlook 使用 Word 来呈现 HTML 个正文。您可以在以下文章中阅读有关受支持和不受支持的 HTML 元素和 CSS 属性的更多信息: