If you write HTML code, this is how to keep spammers from scraping email addresses form your site.
Editor: WW - 08/20/08
Spammers use harvesters (like search engine spiders) that scour web sites looking for mailto links - then they take the email out and add it to their spam mailing list. Here is how to avoid this problem.
Spam Scraper Proof Javascript Email Links
You can copy and paste this code, just change the variables (in blue) to match your email - it will create a normal email link and cannot be seen by spammers.
The code here shows how to make a link for the email me@mydomain.com
<script language="JavaScript"> <!-- var domain = "mysite"; var name = "me"; var extension = ".com"; var link = "email me"; // do not change any code below this line document.write(' <a href="mailto:' + name + '@' + domain + extension + ' " > ' ); document.write(link + ' </a>' ); // --> </script>Make sure you do not use your email address as the link! If you want to use an email address use the HTML character code instead of the @ symbol. & #64; is the code to make an @ symbol.
You can also use a image file with yor email written on it. This is the method used by domain registrars to keep your privacy. Many people also spell out the at like so:
name (at) yahoo.com
then link that.