function comment_notify_comment_publish in Comment Notify 8
Same name and namespace in other branches
- 7 comment_notify.module \comment_notify_comment_publish()
Sends the mail alerts if necessary.
File
- ./
comment_notify.module, line 131 - This module provides comment follow-up e-mail notifications.
Code
function comment_notify_comment_publish($comment) {
// And send notifications - the real purpose of the module.
_comment_notify_mailalert($comment);
}