那里的代码中有很多标记。我刚刚尝试了发送电子邮件时 Outlook 2010 标记的外观 - 因为在将邮件发送到 Outlook 2003 时,没有下划线的链接可以完美地工作。事不宜迟:
<a href="http://example.org">
<span style='text-decoration:none;'>My Link Text not underlined</span>
</a>
需要注意的重要一点:它span
在样式链接中放置了一个。没有任何用途<font>
。
Outlook 具有自动完成超链接的不错“功能” - AFAIK 这仅适用于您键入的文本,但可能值得一试,也许客户正在自动完成您的链接以加下划线?(真的只是猜测)。此处有一个用于关闭自动完成链接的修补程序(仍然需要修改注册表并创建一个名为DisableAutoUrlCompletion
at的 DWORD HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Outlook\Preferences
)。
只是为了完整起见,使用 Outlook 2010 发送的一封非常简单的电子邮件的完整电子邮件正文在 Outlook 2003 中完美显示(相同的字体大小,没有下划线 - 都一样)。[请记住 - 里面有很多微软的“垃圾”,它们并不是真正需要的,比如 Calibri 风格,即使使用了 Arial]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o=
"urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns=
"http://www.w3.org/1999/xhtml">
<head>
<meta name="Generator" content="Microsoft Word 14 (filtered medium)" />
<style type="text/css">
/*<![CDATA[*/
<!--
/* Font Definitions */
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0cm;
margin-bottom:.0001pt;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{mso-style-priority:99;
color:purple;
text-decoration:underline;}
span.EmailStyle17
{mso-style-type:personal-compose;
font-family:"Calibri","sans-serif";
color:windowtext;}
.MsoChpDefault
{mso-style-type:export-only;
font-family:"Calibri","sans-serif";}
@page WordSection1
{size:612.0pt 792.0pt;
margin:70.85pt 70.85pt 2.0cm 70.85pt;}
div.WordSection1
{page:WordSection1;}
-->
/*]]>*/
</style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
<title></title>
</head>
<body lang="EN-US" link="blue" vlink="purple" xml:lang="EN-US">
<div class="WordSection1">
<p class="MsoNormal"><span lang="DE" style=
'font-size:14.0pt;font-family:"Arial","sans-serif";color:black' xml:lang=
"DE"><a href="http://example.org/"><span style=
'color:black;text-decoration:none'>test</span></a></span></p>
</div>
</body>
</html>