【发布时间】:2018-07-04 10:29:57
【问题描述】:
我在 Windows 7 上使用 Thunderbird 52.5.2。
当我编写 html 电子邮件并发送时,Thunderbird 会在发送电子邮件时将我写的电子邮件地址和 http:// 网址转换为可点击的超链接。我不想让 Thunderbird 为我做这件事,我会在需要时通过 insert->links 手动做。
当我撰写和发送 html 电子邮件时,如何防止 Thunderbird 自动将 URL 重写为超链接?
例如,我想编写这样的 html 电子邮件:
Email content I composed (I'm not able to embed img now, please click to view)
Thunderbird 将重写电子邮件地址和 http url 如下(源代码视图)
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=en-US">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<b>H</b><i>ELLO</i><br>
This is an email address <a class="moz-txt-link-abbreviated" href="mailto:dummy@example.com">dummy@example.com</a><br>
This is a http url <a class="moz-txt-link-freetext" href="http://www.example.com/dummy.html">http://www.example.com/dummy.html</a><br>
<br>
</body>
</html>
但我希望 Thunderbird 保留我写的内容如下(源代码视图):
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=en-US">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<b>H</b><i>ELLO</i><br>
This is an email address dummy@example.com<br>
This is a http url http://www.example.com/dummy.html<br>
<br>
</body>
</html>
【问题讨论】:
-
对不起,我在发布这个问题之前进行了搜索。也许我有错误的关键词要搜索。好吧,这个超链接问题似乎无法解决。 :(
标签: html email thunderbird