Replies
Wonderful! Thank you so much Brajesh! Now, do you think you could do the same thing for your WP Users Login plugin?
I tried as a subscriber four times, and the other users are also main accounts that I use, however I did check spam and they are not there.
Thank you. I upgraded to 1.0.1 and added the code to functions.php.
I (Admin) am being notified as before, but I added two other emails that are mine to test the Mods and they are not receiving.
This is the code I used:
function bpp_notify_admin_extra_email_address( $emails, $context = null ) {
//$context will be ‘topic’/’reply’ if you need to do extra filtering$new_emails = array(
‘mary@ChristianGays.com’,
‘mary@winningwebsitecreations.com’,
//keep adding
);return array_merge( $emails, $new_emails );
}
add_filter( ‘bbp_notify_admin_email_addresses’, ‘bpp_notify_admin_extra_email_address’, 10, 2 );