You are here

public function HelperDebugMailLog::mail in Helper 7

Overrides DefaultMailSystem::mail().

Accepts an e-mail message and displays it on screen, and additionally logs it to watchdog().

Overrides DefaultMailSystem::mail

File

includes/HelperDebugMailLog.php, line 19

Class

HelperDebugMailLog
Provides a mail system class useful for debugging mail output.

Code

public function mail(array $message) {
  $header = "To: {$message['to']} <br />Subject: {$message['subject']}";
  $string = check_plain(print_r($message, TRUE));
  $string = '<pre>' . $string . '</pre>';
  if (module_exists('devel')) {
    dpm($message, $header);
  }
  else {
    drupal_set_message($header . ' ' . $string);
  }

  // Don't actually use debug to display the message since we want to be able
  // to categorize the watchdog type as 'mail' so it can be filterable in
  // UI.
  watchdog('mail', $header . ' ' . $string, NULL, WATCHDOG_INFO);
  return TRUE;
}