Good stuff!
I like to use all the commands Jeff = Robi describes, but I put them in a little JavaScript function so I don't expose addresses to data miners and other bad guys who'd like to spam me or my clients to death.
Here is the simplest example:
Code:
<script LANGUAGE="JavaScript">
function emailIt(emAdd) {
var emStr = "mailto:" + emAdd + "@yourdomain.com";
open (emStr,"","");
}
</script>
<a href="javascript:emailIt('youremailname');">text</a>