Le log des erreurs de mail placé dans PATH_DATA/log

This commit is contained in:
Michael RICOIS 2010-11-04 08:14:45 +00:00
parent d7acbd2187
commit 254a896c46

View File

@ -45,7 +45,7 @@ function sendMail($sujet, $message, $from, $to, $cc = array())
return true;
} catch (phpmailerException $e) {
// Ecriture des erreurs dans un fichier (sujet, to)
file_put_contents(PATH_DATA.'/mailerror.log',
file_put_contents(PATH_DATA.'/log/mailerror.log',
$e->errorMessage().' '.$to.' '.$sujet,
FILE_APPEND);
return false;