You are here

function comment_notify_comment_publish in Comment Notify 7

Same name and namespace in other branches
  1. 8 comment_notify.module \comment_notify_comment_publish()

File

./comment_notify.module, line 235
This module provides comment follow-up e-mail notification for anonymous and registered users.

Code

function comment_notify_comment_publish($comment) {

  // And send notifications - the real purpose of the module.
  _comment_notify_mailalert($comment);
}