Gmail 将文本显示为链接,但它不应该显示
有谁知道是否有一个特殊的技巧可以让 gmail 不将文本显示为 htmllink? 我们正在向客户发送新闻通讯,文本中可能会出现类似“one-company.com inc.”的内容。 Gmail 会建立一个链接。
Does anybody know if there is a special trick to make gmail not to show text as an htmllink?
We are sending newsletters to our customers, and there is a possibility that in the text is something like "one-company.com inc." and gmail makes a link.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是可以做到的。
您需要将所有点 (.) 和“@”符号括在 <<跨度>< /跨度>块。
即 [email protected] 应变为 x<跨度>@< /跨度>y<跨度>。<跨度>com
That can be done.
you need to enclose all Dots (.) and at-the-rate-of '@' symbols in < span>< / span> blocks.
i.e [email protected] should become x< span>@< / span>y< span>.< span>com
你也可以实现这样的目标。这里的技巧是没有 href 的锚标记。
You can achieve like this also. Here trick is ancher tag without href.
选项 1:Img
制作图像。当然,不是超链接。
选项 2:!important、内联
将
!important
添加到您的内联样式(样式被忽略在 Gmail 中)
Option 1: Img
Make an image. Of course, not hyperlinked.
Option 2: !important, inline
Add
!important
to your inline styles (<head>
styles are ignored in Gmail)我怀疑你是否能控制它。这可能取决于最终用户的 gmail 设置,默认情况下 gmail 会将 one-company.com 之类的内容转换为链接,除非用户在 gmail 中关闭了此功能。
I doubt, if you have control over it. It probably depends on the end-users gmail settings and by default gmail converts something like one-company.com to a link, unless the user has turned this feature off in gmail.
您可以尝试
.
是句点的 ascii 字符,为句点创建一个小图像并将其夹在其中。如果这不起作用,
You could try
.
is the ascii character for periodif that doesn't work, create a small image for the period and sandwich that in there.