mail_debugger.module in Mail Debugger 8
Same filename and directory in other branches
File
mail_debugger.moduleView source
<?php
/**
* Implements hook_mail().
*/
function mail_debugger_mail($key, &$message, $params) {
$message['body'][] = $params['body'];
$message['subject'] = $params['subject'];
}
Functions
Name | Description |
---|---|
mail_debugger_mail | Implements hook_mail(). |