setlocale(LC_ALL,'french');
echo "Modification fichier ".date("l j F Y à H:i", getlastmod());
Echo"
Envoi du mail vers : test@$domaine";
//Envoi du mail
$head = "From: noreply@lws.fr\n";
$head .= "X-Sender: \n";
$head .= "X-Mailer: PHP\n";
$head .= "Return-Path: \n";
$head .= "Content-Type: text/plain; charset=iso-8859-1\n";
mail("test@$domaine", "[Test de mail]" ,"test de message", $head);
phpinfo();
?>