HTML 电子邮件文本格式 - Outlook 2013

HTML Email text formatting - Outlook 2013

我创建了一个电子邮件模板,当 运行 测试时,在 Outlook 2013 中查看时,其中一个段落中出现了一个奇怪的图标。

奇怪的图标在 'paying' 和 'off' 之间

有没有人知道如何隐藏这个图标

编辑:

HTML

<tr>
    <td style="padding:0 0 0 15px;">
        <div style="font-family: Calibri,Arial,sans-serif;font-size:13px;color:#FFFFFF;display:inline-block;">Great if you don’t pay off your card every month, or if you are paying off another card with a higher interest rate – saving you money.</div>
    </td>
</tr>

谢谢

您是否为 HTML 页面设置了字符集?也许它使用了错误的编码。

看到这个w3schools page

The HTML charset Attribute

To display an HTML page correctly, a web browser must know the character set used in the page.

This is specified in the <meta> tag:
For HTML4:
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1">
For HTML5:
<meta charset="UTF-8"> 

可能是您已经完成的事情 - 但您是否尝试过删除 "paying off" 并手动重新发送它?

我无法在复制提供的代码时重现该问题,因此无论那个奇怪的字符是什么,都必须已被 Whosebug 编辑器删除。

我在从 pdf 复制和粘贴文本时遇到过类似的问题,它在编辑器中看起来很完美,但 Outlook 出于某种原因尝试(但失败)显示 pdf 包含的不可见元素。