bbp_pre_notify_forum_subscribers
bbp_pre_notify_forum_subscribers
Appears in: bbpress.2.5.14, bbpress.2.6.0, bbpress.2.6.1, bbpress.2.6.11, bbpress.2.6.12, bbpress.2.6.2, bbpress.2.6.3, bbpress.2.6.4, bbpress.2.6.5, bbpress.2.6.6, bbpress.2.6.9
Hook Type: action
Displaying hooks found in version: bbpress.2.6.9do_action('bbp_pre_notify_forum_subscribers') is found 1 times:
- /includes/common/functions.php line 132213181319132013211322132313241325132613271328
$headers
= apply_filters(
'bbp_subscription_mail_headers'
,
$headers
);
$to_email
= apply_filters(
'bbp_subscription_to_email'
,
$no_reply
);
// Before
do_action(
'bbp_pre_notify_forum_subscribers'
,
$topic_id
,
$forum_id
,
$user_ids
);
// Send notification email
wp_mail(
$to_email
,
$subject
,
$message
,
$headers
);
// After
do_action(
'bbp_post_notify_forum_subscribers'
,
$topic_id
,
$forum_id
,
$user_ids
);