1

我的电子邮件模板中有电子邮件链接:

<a href="email@email.email">email</a>

即使我的电子邮件是有效的,因为这是我被要求做的,这些链接在 Outlook 上不能很好地显示,而不是有一个标签“电子邮件”可点击”,我在 Outlook Web 应用程序上有这样的东西:(我猜即使在网络版本和移动版本中也是如此)

[email@email.email]电子邮件

真实例子:

<a
   href="email@email.email"
   style="text-decoration: none;"><span
   style="font-size: 16px; color: #055151; font-weight: 600; font-family: Helvetica, sans-serif 
   !important; text-decoration: underline; text-decoration-color: #055151;">Email</span>
</a>

href 在 Outlook 上显示为纯文本

每个链接都必须包含 https 或 http 才能在 Outlook 上正确显示?

谢谢你的帮助!

4

1 回答 1

1

如果您正在寻找重定向到邮件,那么这是您的解决方案:

<a
   href="mailto:email@email.email"
   style="text-decoration: none;"><span
   style="font-size: 16px; color: #055151; font-weight: 600; font-family: Helvetica, sans-serif 
   !important; text-decoration: underline; text-decoration-color: #055151;">Email</span>
</a>
于 2021-02-17T16:46:05.320 回答