From 7531f956aa542558d601a3d4f3039f4041793ec0 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 26 Aug 2007 08:00:49 +0000 Subject: - Patch #169627 by JirkaRybka: improved logging of mail problems. --- includes/mail.inc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'includes/mail.inc') diff --git a/includes/mail.inc b/includes/mail.inc index 06714fe21..ad123fee8 100644 --- a/includes/mail.inc +++ b/includes/mail.inc @@ -76,7 +76,9 @@ * @return * The $message array structure containing all details of the * message. If already sent ($send = TRUE), then the 'result' element - * will contain the success indicator of the e-mail. + * will contain the success indicator of the e-mail, failure being already + * written to the watchdog. (Success means nothing more than the message being + * accepted at php-level, which still doesn't guarantee it to be delivered.) */ function drupal_mail($module, $key, $to, $language, $params = array(), $from = NULL, $send = TRUE) { $default_from = variable_get('site_mail', ini_get('sendmail_from')); @@ -126,6 +128,12 @@ function drupal_mail($module, $key, $to, $language, $params = array(), $from = N // Optionally send e-mail. if ($send) { $message['result'] = drupal_mail_send($message); + + // Log errors + if (!$message['result']) { + watchdog('mail', 'Error sending e-mail (from %from to %to).', array('%from' => $message['from'], '%to' => $message['to']), WATCHDOG_ERROR); + drupal_set_message(t('Unable to send e-mail. Please contact the site admin, if the problem persists.'), 'error'); + } } return $message; -- cgit v1.2.3