You are here

function node_expire_mail in Node expire 6

Implementation of hook_mail().

File

./node_expire.module, line 138

Code

function node_expire_mail($key, &$message, $params) {
  $message['subject'] = $params['subject'];
  $message['body'][] = $params['body'];
  $message['headers'] = array_merge($message['headers'], $params['headers']);
}