如果超链接无效,如何防止 Outlook 在电子邮件中将超链接显示为纯文本?

How to prevent Outlook from displaying href links as plain texts in email if they are invalid?

我有 link 电子邮件,在我的电子邮件模板中:

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

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

[电子邮件@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 中显示为纯文本

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

感谢您的帮助!

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

<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>