Can you recommend a plugin that enables notification on multiple email addresses on posted comments? Looking for a plugin that both notifies a global list of email addresses and the author of the post.
4 Answers
Post authors are notified of new comments by default; there are several plugins that modify this behavior. See wp_notify_postauthor
.
You can hook into comment_notification_recipients
and add an aribtrary list of recipients as described here. Then you could create a metabox or dashboard widget to manage the recipient list.
Keep in mind that this functionality might be abused as a spam engine or turned into one unintentionally if your comment spam filtering is inadequate.