0

在我的 EDM 中,我有:

<p class="my_class" style="cursor: pointer; text-align: center;" >
<a href="{{$my_variable}}" style="font-weight:bold;color:#2897FC;">Verify email</a></p>

它应该看起来像:

在此处输入图像描述

但这就是我得到的:

在此处输入图像描述

4

1 回答 1

1

这是Office 365 和 Outlook.com中的错误。当您在 href 中包含除 URL 以外的任何内容时,Office 365 和 Outlook.com 将在括号中的电子邮件内显示此内容。所以下面的例子……</p>

<a href="Hello">world</a>

… 会成为 :

[Hello]world

唯一的办法是发送带有 URL 的测试。实际发送完成后,URL 会通过数据库或内容块填充。

测试期间的示例,您将发送测试为:

<a href="https://www.google.com/" style="font-weight:bold;color:#2897FC;">Verify email</a></p>
于 2019-09-18T23:26:11.547 回答