The HTML code follows...
<a href=mailto:
[email protected]>Send Mail</a>
But... that exposes your email address to the spiders that crawl websites
collecting email addresses for spammers. You don't want to use that HTML
method as it is outdated. You want to use some JavaScript to write your
email address into the page at run-time noting if JavaScript is turned off
the link will not even display but that's the price we pay for privacy.
Put a copy of this script into your HTML source wherever you want the link
text to appear.
<script language="javascript">
<!--
var linkText = "Send Mail"
var account = "name"
var domain = "hotmail.com"
// document.write must be all one line or an error will occur
document.write("<a href=" + "mail" + "to:" + account + "@" + domain + ">"+
linkText + "</a>")
//-->
</script>
<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL
http://metromilwaukee.com/
URL
http://clintongallagher.metromilwaukee.com/