fr  nl  de  en
Protecting from spam is really simple if you respect some rules :

1°) Never communicate your email to a marketing website, use a Halospam alias when your email is necessary for a sending a code or an URL.

2°) Never let you email on a forum or a newsgroup.

3°) If you are a webmaster website, never let clearly your email in a possible contact rubrics. You can crypte it :

In php :
<?php
function email_encode($string)
{
// This function will encrypte your email
$ret_string="";
$len=strlen($string);
for($x=0;$x<$len;$x++)
{
$ord=ord(substr($string,$x,1));
$ret_string.="&#$ord;";
}
return $ret_string;
}
?>

Or simplier :
<a href="mailto:meHALTOSPAM@mywebsite.com">Write to me (Take off the HALTOSPAM in the adress)</a>

Warning :
The sender will have to take of the mention HALTOSPAM. BOTS have recently integrated the removal of the typics anglicism NOSPAM.
HaltoSpam 2003 - 2024 © Tous droits réservés