[mail function]
; For Win32 only.
SMTP = smtp.menara.ma
; For Win32 only.
sendmail_from = [email protected]
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
;sendmail_path =
sendmail_path = /usr/sbin/sendmail
[mail function]
; For Win32 only.
SMTP = smtp.menara.ma
; For Win32 only.
sendmail_from = [email protected]
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
;sendmail_path =
sendmail_path = /usr/sbin/sendmail
ça me donne :[mail function]
; For Win32 only. paramètre du serveur smtp de votre fournisseur d'accès
SMTP = "localhost" ;for win32 only
smtp_port "25";
; For Win32 only. l'adresse e-mail qui apparaitra dans le message envoyé
sendmail_from = NULL;
La ligne 218 contient :Warning: mail() [function.mail]: "sendmail_from" not set in php.ini or custom "From:" header missing in c:\www\dsitest\boncommform.php on line 218
mail("[email protected]", "Mon Sujet", "Ligne 1\nLigne 2\nLigne 3");
[mail function]
; For Win32 only. paramètre du serveur smtp de votre fournisseur d'accès
SMTP = "localhost" ;for win32 only
smtp_port "25";
; For Win32 only. l'adresse e-mail qui apparaitra dans le message envoyé
sendmail_from = NULL;
$headers = 'From: [email protected]';
mail("[email protected]", "Mon Sujet", "Ligne 1\nLigne 2\nLigne 3", $headers);
Oui j'ai essayé avec [email protected] uniquement mais ça n'a pas marchétu avais essayé avec [email protected] uniquement ?
si oui met une vraie adresse
et voici comment j'envoie un mail :[mail function]
; For Win32 only.
SMTP = smtp.wanadoo.fr
; For Win32 only.
;sendmail_from = [email protected]
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
;sendmail_path =
$subject = 'Erreur sur '.SITE;
$headers = 'From: shyrka@'.SITE."\r\n" .
'Reply-To: '.EMAIL_ADMIN."\r\n";
$message = "Erreur sur ".$fichier." à la ligne ".$ligne."\n";
$message .= $numErreur." : ".$msgErreur;
mail(EMAIL_ADMIN, $subject, $message, $headers);
Warning: mail() [function.mail]: "sendmail_from" not set in php.ini or custom "From:" header missing in c:\www\dsitest\boncommform.php on line 221