You are here

function notifications_lite_mail in Notifications 6.4

Same name and namespace in other branches
  1. 6 notifications_lite/notifications_lite.module \notifications_lite_mail()
  2. 6.2 notifications_lite/notifications_lite.module \notifications_lite_mail()
  3. 6.3 notifications_lite/notifications_lite.module \notifications_lite_mail()

Implementation of hook_mail()

File

notifications_lite/notifications_lite.module, line 107
Simple notifications API

Code

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