bbp_subscription_to_email
bbp_subscription_to_email
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: filter
Displaying hooks found in version: bbpress.2.6.9apply_filters('bbp_subscription_to_email') is found 2 times:
- /includes/common/functions.php line 115211481149115011511152115311541155115611571158
/** Send it ***************************************************************/
// Custom headers
$headers
= apply_filters(
'bbp_subscription_mail_headers'
,
$headers
);
$to_email
= apply_filters(
'bbp_subscription_to_email'
,
$no_reply
);
// Before
do_action(
'bbp_pre_notify_subscribers'
,
$reply_id
,
$topic_id
,
$user_ids
);
// Send notification email
wp_mail(
$to_email
,
$subject
,
$message
,
$headers
);
- /includes/common/functions.php line 131913151316131713181319132013211322132313241325
/** Send it ***************************************************************/
// Custom headers
$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
);