You are here

function automatic_updates_mail in Automatic Updates 7

Same name and namespace in other branches
  1. 8 automatic_updates.module \automatic_updates_mail()

Implements hook_mail().

File

./automatic_updates.module, line 162
Contains automatic_updates.module.

Code

function automatic_updates_mail($key, &$message, $params) {
  $message['subject'] = $params['subject'];
  $message['body'][] = drupal_render($params['body']);
}