Spammers use harvesters to get emails to add to their lists, thus posting your email on a public webspace has always been the surest way to get spam. Many people have taken to posting their emails in these formats:
Quote:name AT hotmail DOT com
or
Those tricks are intended to fool email harvesting programs while not fooling humans, but as always some of the humans are fooled too.
Here is a javaascript that compiles the email address on the fly and displays as a regular email link to the end user (as long as they have a javascript enabled browser) but confuses most spam bots.
Code:<script language="JavaScript">
<!--
var name = "name";
var domain = "domain.com";
document.write('<a href=\"mailto:' + name + '@' + domain + '\">');
document.write(name + '@' + domain + '</a>');
//-->
</script>
In the above code you must replace the following red parts (with the blue part of the example emails):
var name = "
name"; (e.g.
name@hotmail.com
and
var domain = "
domain.com"; (e.g. name@
hotmail.com )
I will post some even better email cloaking tools in the future.