function comment_notify_mail in Comment Notify 6
Same name and namespace in other branches
- 8 comment_notify.module \comment_notify_mail()
- 7 comment_notify.module \comment_notify_mail()
Implementation of hook_mail().
1 string reference to 'comment_notify_mail'
- _comment_notify_mailalert in ./
comment_notify.module - Private function to send the notifications.
File
- ./
comment_notify.module, line 534 - This module provides comment follow-up e-mail notification for anonymous and registered users.
Code
function comment_notify_mail($key, &$message, $params) {
$message['subject'] = $params['subject'];
$message['body'][] = $params['body'];
}