开发者

Links does not work in <a href> tag when content has .com inside

开发者 https://www.devze.com 2023-03-16 18:05 出处:网络
in my code I generate a body of a html email message. Part of it is following: <a href=\"mylink.pl\">SomeName.com</a>

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?


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消