链接在 中不起作用当内容中有 .com 时标记
在我的代码中,我生成了 html 电子邮件消息的正文。部分内容如下:
<a href="mylink.pl">SomeName.com</a>
当我在邮件客户端或 Gmail 中收到此电子邮件时,当我单击链接时,我将被定向到 SomeName.com
而不是 mylink.pl
位于 标记的 href 部分。而且这种情况似乎仅发生在
.com
域中。
我有什么想法可以处理这个问题吗?
in my code I generate a body of a html email message. Part of it is following:
<a href="mylink.pl">SomeName.com</a>
When I receive this email in my Mail client or in Gmail and when I click the link I'm directed to the SomeName.com
and not to the mylink.pl
which is in the href part of the <a>
tag. And it looks that this situation occurs only for the .com
domains.
Any ideas how I could deal with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在电子邮件中使用绝对 URI。它们(通常)以
http://
开头。您拥有的是相对 URI,这在电子邮件中没有多大意义。当您尝试访问浏览器时,您可能只是点击了浏览器的搜索功能。
Use absolute URIs in emails. They start with (usually)
http://
What you have is a relative URI, which doesn't make much sense in an email. You are probably just hitting your browser's search function when you try to visit it.