Outlook 自动用锚点替换链接
Outlook auto replacing links with anchor
在我的电子邮件模板中,我有一个使用网络字体的导入:
@import url("http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300");
Outlook 正在用锚点替换 url 内容:
@import url("<a href="http: //fonts.googleapis.com/css?family=Open+Sans+Condensed:300" class="">http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300</a>");
我试过了,结果一样,缺少什么?
谢谢
Outlook 使用 Word 作为电子邮件编辑器。您可以在 MSDN 中的以下系列文章中阅读有关受支持和不受支持的 HTML 元素、属性和级联样式表属性的信息:
Outlook 并不真正理解 @import
或 @font-face
,因此每当您在电子邮件中使用它们时,您都需要在样式标签周围添加一个 MSO 条件。
<!--[if !mso]><!-->
<style type="text/css">
@import url("http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300");
</style>
<!--<![endif]-->
在我的电子邮件模板中,我有一个使用网络字体的导入:
@import url("http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300");
Outlook 正在用锚点替换 url 内容:
@import url("<a href="http: //fonts.googleapis.com/css?family=Open+Sans+Condensed:300" class="">http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300</a>");
我试过了,结果一样,缺少什么?
谢谢
Outlook 使用 Word 作为电子邮件编辑器。您可以在 MSDN 中的以下系列文章中阅读有关受支持和不受支持的 HTML 元素、属性和级联样式表属性的信息:
Outlook 并不真正理解 @import
或 @font-face
,因此每当您在电子邮件中使用它们时,您都需要在样式标签周围添加一个 MSO 条件。
<!--[if !mso]><!-->
<style type="text/css">
@import url("http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300");
</style>
<!--<![endif]-->