replace all email addresses in ur website with transparent graphics (gif/png)
example:
http://www.freefm.de/modules.php?nam...howpage&pid=12
and add this little code as image link
PHP Code:
<a href="mailto.php?to=emailaddress&subject=emailsubject"><img src="image.gif" alt="mailme" title="mailme" border="0"></a>
mailto.php:
PHP Code:
<?php
$name=$_GET['to'];
$subject=$_GET['subject'];
// echo "mailto:".$name."@domain.tld?subject=".$subject;
header("Location: mailto:".$name."@domain.tld?subject=".$subject);
exit;
?>