Title: admin notification
Last modified: December 12, 2018

---

# admin notification

 *  Resolved [wpturk](https://wordpress.org/support/users/wpturk/)
 * (@wpturk)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/admin-notification-11/)
 * Hi,
    How can I also notify admin when someone posts topics/replies? Subscribed
   User notification works but I also want admin to get notified.

Viewing 7 replies - 1 through 7 (of 7 total)

 *  Plugin Author [Markus Echterhoff](https://wordpress.org/support/users/mechter/)
 * (@mechter)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/admin-notification-11/#post-10977716)
 * This plugin does not do that. Please search the web for: “admin notification 
   bbpress post” (without the “”). It seems there are currently at least 2 plugin
   solutions available.
 *  Thread Starter [wpturk](https://wordpress.org/support/users/wpturk/)
 * (@wpturk)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/admin-notification-11/#post-10978084)
 * Thanks for your quick answer. I will check for a plugin/filter where admin can
   be notified too.
 * Is it maybe possible at least to add admin (bcc) to the emails sent via this 
   plugin using filter:
 * bbp_subscription_email_recipients( $recipients )? When yes, how?
 *  Plugin Author [Markus Echterhoff](https://wordpress.org/support/users/mechter/)
 * (@mechter)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/admin-notification-11/#post-10978389)
 * If you don’t want to install yet another plugin, a little coding should do the
   trick.
 * I would recommend against adding a bcc header to the emails because then this
   plugin would send you one notification per notified user.
 * The filter `bbp_subscription_email_recipients` indeed allows you to add the admin
   to the list of recipients, which would send a notification to the admin for any
   and all new topics and replies, regardless of whether or not they have manually
   subscribed. If that is what you want, try adding the following code to your theme’s
   functions.php:
 * `add_filter( 'bbp_subscription_email_recipients', function( $recipients ) { $
   recipients []= [ 'address' => get_bloginfo( 'admin_email' ), 'name' => 'Admin
   Name' ]; return $recipients; } );`
 * The code is untested, but it should work. Let me know if it does. 🙂
    -  This reply was modified 7 years, 6 months ago by [Markus Echterhoff](https://wordpress.org/support/users/mechter/).
      Reason: fixed code
 *  Plugin Author [Markus Echterhoff](https://wordpress.org/support/users/mechter/)
 * (@mechter)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/admin-notification-11/#post-10978461)
 * In case you have already tried the code I posted above and it didn’t work: I 
   have found a couple of errors and updated my reply accordingly. Try again using
   the fixed code.
 *  Thread Starter [wpturk](https://wordpress.org/support/users/wpturk/)
 * (@wpturk)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/admin-notification-11/#post-10980312)
 * Thanks Markus, this works!
 *  Thread Starter [wpturk](https://wordpress.org/support/users/wpturk/)
 * (@wpturk)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/admin-notification-11/#post-10980512)
 * If I use this filter, does it also email async (over cron)?
 *  Plugin Author [Markus Echterhoff](https://wordpress.org/support/users/mechter/)
 * (@mechter)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/admin-notification-11/#post-10980583)
 * You’re welcome.
 * And yes, this filter allows modifying the list of ABBPS notification recipients
   prior to scheduling the cron job. If used as described above, the admin notification
   will be the last email sent when the cron task is executed.

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘admin notification’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/asyncronous-bbpress-subscriptions.
   svg)
 * [AsynCRONous bbPress Subscriptions](https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/asyncronous-bbpress-subscriptions/)
 * [Active Topics](https://wordpress.org/support/plugin/asyncronous-bbpress-subscriptions/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/asyncronous-bbpress-subscriptions/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/asyncronous-bbpress-subscriptions/reviews/)

## Tags

 * [admin notification](https://wordpress.org/support/topic-tag/admin-notification/)

 * 7 replies
 * 2 participants
 * Last reply from: [Markus Echterhoff](https://wordpress.org/support/users/mechter/)
 * Last activity: [7 years, 6 months ago](https://wordpress.org/support/topic/admin-notification-11/#post-10980583)
 * Status: resolved