| Make your mailto's Spam-proof
I've had my email address on the web, in my domain
registrations and in mailto: links since 1993, and it shows. :P
I get, on average, about 60 spams a day at that address, so many
that I now have to abandon it. My new address I will be disguising
a bit better. One way of doing that is by using this JavaScript
trick I got from JavaScriptSource.com
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
user = "myusername";
site = "myhost.com";
document.write('<a href=\"mailto:'
+ user + '@' + site + '\">');
document.write('Email me!' + '</a>');
// End -->
</SCRIPT>
This will result in a mailto: like this:
Just make sure that in the link text, you don't type out the address. Advanced spam spiders read more than just mailto: links.
|