防止 outlook Mobile 自动创建不真实的链接

Prevent outlook mobile from automatically creating links which arent real

所以我正在创建一个新的电子邮件模板,但是 outlook mobile 认为将所有看起来像 href(但实际上不是)的文本转换为 link 是个好主意。这发生在任何 HTML 标签、"h1"、"p"、"span"、"div" 等

有什么方法可以防止这种愚蠢的功能在其他人的手机上呈现吗?

这是代码(所有样式都是内联的,所以没有样式表):

<h1 style="font-family: Arial, Helvetica, sans-serif; font-weight: bold; Margin-bottom: 8px; Margin-left: 0; Margin-right: 0; Margin-top: 16px; color: #ffffff; padding: 0; font-size: 26px; line-height: 34px;">Order ID 204793</h1>
<p style="font-family: Arial, Helvetica, sans-serif; color: #ffffff; font-size: 20px; Margin-bottom: 24px; Margin-top: 0; line-height: 27px; mso-line-height-rule: exactly; margin-bottom: 16px;">08/09/2018, 15:47</p>

将您不想 link 编辑的任何文本包裹在您自己的 <a> 标签中并设置样式,使其看起来不像 link(例如"color:#000000;text-decoration:none;")。您不需要包含 href 属性。