有没有一种快速的方法来创建一个链接,当点击该链接时,用户可以通过 mailto 发送他们所在页面的链接?
问问题
333 次
2 回答
6
要发送您所在页面的链接,请尝试使用以下代码:
<a HREF="mailto:?subject=look at this website&body=Hi,I found this website
and thought you might like it <?php
$url="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
echo $url;
?>">Tell a friend!</a>
php 将获取您当前所在页面的 url。
于 2012-05-14T10:42:12.253 回答
3
为什么不使用 mailto HTML 链接?
<a href="mailto:?Subject=A%20page%20I%20found%20interesting&body=url_of_your_page">
Mail this page to a friend
</a>
不要忘记对您的主题/正文内容进行 urlencode,例如在 PHP 中使用urlencode 。
于 2012-05-14T10:35:03.037 回答