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 5 years, 11 months ago by Markus Echterhoff. Reason: fixed code