Hotmail - 自动编码 URL
我正在使用 PHP 开发一个向客户发送电子邮件的应用程序。电子邮件正文包含返回我们网站的 URL 超链接,如下所示:
http://myserver/myfolder/test.cfm?id=una-bottiglia-di-vino-©-®
以上网址包含
Yahoo、GMail、Outlook 等中的版权和注册符号。我发送时显示的链接。但是 Hotmail 将 href url 显示为编码
http:// /myserver/myfolder/test.cfm?id=una-bottiglia-di-vino-%a9-%ae
I'm developing an application with PHP that sends emails to customers. The body of the email contains a URL hyperlink back to our site kind of like this:
http://myserver/myfolder/test.cfm?id=una-bottiglia-di-vino-©-®
The above url contatins copyright and registered symbols
In Yahoo, GMail, Outlook, etc. the link displayed as I sent. However Hotmail displays the href url as encoded
http://myserver/myfolder/test.cfm?id=una-bottiglia-di-vino-%a9-%ae
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的邮件中,您只需执行 urlencode($myUrl);
更多信息: http://php.net/manual/en/function.urlencode.php< /a>
In your mail you just do urlencode($myUrl);
More information: http://php.net/manual/en/function.urlencode.php