Hello @msuhockey
When you enable the notification/subscription functionality, all users who are interested in it can subscribe to your forum so they get notified about all new topics. Have you tried it?
Yes that works, but Im speaking more about the admins on the backend. Is there a way for multiple admins to receive notification? Thanks!
Hello @msuhockey
You can try the following code which you have to add to your themes functions.php file:
function custom_mails($mails) {
$mails[] = 'example@test.com';
return $mails;
}
add_filter('asgarosforum_subscriber_mails_new_topic', 'custom_mails');
Thanks!
Just to verify… the “example@test.com” in your code is where I would plug in additional admin emails? multiple possible with a comma in between?
Hello @msuhockey
Almost. If you want to add multiple ones, you have to add them via an own assignment:
function custom_mails($mails) {
$mails[] = 'example@test.com';
$mails[] = 'another@mail.com';
$mails[] = 'more@mails.com';
return $mails;
}
add_filter('asgarosforum_subscriber_mails_new_topic', 'custom_mails');