link if($QUERY_STRING) { $email = str_replace(":","@",$QUERY_STRING); } else { die("Erreur ! Il n'y a pas d'adresse e-mail !"); } if(stristr($email,"@")) { Header("Location:mailto:$email"); } else { die("The e-mail address must include a domain name."); } ?>