In many web pages there is possibility to send this web page adress to a friend. You type in friend's e-mail and he/she will get an e-mail saying: Hi, your friend thought you might like this web page: www.webpage.com
Hello.
You can use javascript in free html page.
For example this:
<script language="javascript">
function mailpage()
{
mail_str = "mailto:?subject=Check out the " + document.title;
mail_str += "&body=I thought you might be interested in the " + document.title;
mail_str += ". You can view it at, " + location.href.toString();
location.href = mail_str;
}
</script>
<p><a href="javascript:mailpage()">Click here</a> to email this page to a friend.</p>
Send to a friend
Hello.
Specify please, what do you wish to "send to a friend"?
Best regards,
Roman
In many web pages there is
In many web pages there is possibility to send this web page adress to a friend. You type in friend's e-mail and he/she will get an e-mail saying: Hi, your friend thought you might like this web page: www.webpage.com
This kind of thing I had in mind.
Send to a friend
Hello.
You can use javascript in free html page.
For example this:
<script language="javascript">
function mailpage()
{
mail_str = "mailto:?subject=Check out the " + document.title;
mail_str += "&body=I thought you might be interested in the " + document.title;
mail_str += ". You can view it at, " + location.href.toString();
location.href = mail_str;
}
</script>
<p><a href="javascript:mailpage()">Click here</a> to email this page to a friend.</p>
This Javascript can not work in all browsers.
Best regards,
Roman