Hi,
I've probleme when I try to send mail from one of my application.
here is the code :
$email="info@site.fr";
$message="Changement de la date de la tâche ".$values["libelle"]." \n Début : ".$values["date_debut_relle"]." Fin : ".$values["date_fin_relle"];
$subject="Cchangement de date sur une intervention";
mail($email, $subject, $message);
An the error from the server :
mail() [function.mail]: SMTP server response: 550 5.1.0 <site Meci> '@' or '.' expected after 'site'
I've just try the code in an other php's page and i've no error.
Can someone help me please?