welcomewiki has just posted in the HTML Forum forum of Wiki Newforum under the title of HTML Links.
This thread is located at http://www.wikinewforum.com/showthread.php?t=5780
Here is the message that has just been posted:
***************
*Create a mailto link (http://www.w3schools.com/html/tryit.asp?filename=tryhtml_mailto)
This example demonstrates how to link to a mail message (will only work if you have mail installed).
<html>
<body>
<p>
This is a mail link:
<a href="mailto:info@wikinewforum.com?subject=Hello%20again">
Send Mail</a>
</p>
<p>
<b>Note:</b> Spaces between words should be replaced by %20 to <b>ensure</b> that the browser will display your text properly.
</p>
</body>
</html>
----------------
* This is a mail link: Send Mail
*Note:* Spaces between words should be replaced by %20 to *ensure* that the browser will display your text properly.
***************