bbp_user_email_update_content

bbp_user_email_update_content

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_user_email_update_content') is found 1 times:

  • /includes/users/functions.php line 447
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    *
     * @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' ) ) );