bbp_user_email_update_content
bbp_user_email_update_content
Appears in: 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_user_email_update_content') is found 1 times:
- /includes/users/functions.php line 447443444445446447448449450451452453
*
* @param string
$email_text
Text in the email.
* @param string
$r
New user email that the current user has changed to.
*/
$content
= apply_filters(
'bbp_user_email_update_content'
,
$email_text
,
$r
);
// Build the email message
$message
= sprintf(
$content
,
$user_login
,
$confirm_url
,
$r
[
'newemail'
], get_site_option(
'site_name'
), network_home_url() );
// Build the email subject
$subject
= sprintf( __(
'[%s] New Email Address'
,
'bbpress'
), wp_specialchars_decode( get_option(
'blogname'
) ) );