You are here

mail_debugger.module in Mail Debugger 8

File

mail_debugger.module
View source
<?php

/**
 * Implements hook_mail().
 */
function mail_debugger_mail($key, &$message, $params) {
  $message['body'][] = $params['body'];
  $message['subject'] = $params['subject'];
}

Functions

Namesort descending Description
mail_debugger_mail Implements hook_mail().