bbp_subscription_from_email
bbp_subscription_from_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_from_email') is found 2 times:
- /includes/common/functions.php line 113811341135113611371138113911401141114211431144
// Get the noreply@ address
$no_reply
= bbp_get_do_not_reply_address();
// Setup "From" email address
$from_email
= apply_filters(
'bbp_subscription_from_email'
,
$no_reply
);
// Setup the From header
$headers
[] =
'From: '
. get_bloginfo(
'name'
) .
' <'
.
$from_email
.
'>'
;
// Loop through addresses
foreach
( (
array
)
$email_addresses
as
$address
) {
- /includes/common/functions.php line 130513011302130313041305130613071308130913101311
// Get the noreply@ address
$no_reply
= bbp_get_do_not_reply_address();
// Setup "From" email address
$from_email
= apply_filters(
'bbp_subscription_from_email'
,
$no_reply
);
// Setup the From header
$headers
[] =
'From: '
. get_bloginfo(
'name'
) .
' <'
.
$from_email
.
'>'
;
// Loop through addresses
foreach
( (
array
)
$email_addresses
as
$address
) {