Bonjour,
Depuis que je suis passé en APACHE 2 avec PHP 5 ... Mes envois d'email ne fonctionne plus ... La page correspondante me renvoit ce message.
Pourtant mon PHP.INI est correctement paramétré ... avec les valeurs suivantes."Warning: mail() [function.mail]: SMTP server response: 501 5.5.4 Invalid Address in E:\EasyPHP\www\ah\Pages\materiel\spare\det_spare.php on line 212"
Code X : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9 [mail function] ; For Win32 only. SMTP = [nom serveur] ; For Win32 only. sendmail_from = [adresse email] ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). ;sendmail_path =
Voici le code de la page a la ligne 212.
AVEZ VOUS UNE IDEE ??????????
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30 $n_spare=$data['nom_spare']; $emprunteur=$data['emprunteur']; $j_empr=convert_date ($data['Datej_pr']); $j_retour=convert_date ($data['Date_ret']); if($data['rappel'] == 0) { if($datejour == $data['Date_ret']) { $Email = "Section Spare"; $msg = "RAPPEL\r\n\r\n$n_spare prété à $emprunteur en date du $j_empr - DOIT ETRE RAMENER CE JOUR."; $recipient = "nicolas.rio@alliance-healthcare.fr, clement.feit@alliance-healthcare.fr, martial.dudouit@alliance-healthcare.fr"; LIGNE 212 mail($recipient, "SPARE à récupérer ce jour" ,$msg, "From: $Email\r\nReply-To: $Email" ); $maj_rappel = "UPDATE pr_spare SET rappel=1 WHERE nomspare='$n_spare'"; $req_maj=mysql_query($maj_rappel) or die ("ERREUR"); } } if($data['rappel_bis'] == 0) { if($datejour > $data['Date_ret']) { $Email = "Section Spare"; $msg = "$n_spare prété à $emprunteur en date du $j_empr \r\n Date de retour réelle dépassée [$j_retour]\n MERCI DE LE RELANCER."; $recipient = "nicolas.rio@alliance-healthcare.fr, clement.feit@alliance-healthcare.fr, martial.dudouit@alliance-healthcare.fr,jean-francois.fernique@alliance-healthcare.fr, sebastien.drouin@alliance-healthcare.fr"; mail($recipient, "Dépassement - Date de récupération" ,$msg, "From: $Email\r\nReply-To: $Email" ); $maj_rappel = "UPDATE pr_spare SET rappel_bis=1 WHERE nomspare='$n_spare'"; $req_maj=mysql_query($maj_rappel) or die ("ERREUR"); } }
Thks les amis !!!!!
Partager