user_confirmed_action_email_content

user_confirmed_action_email_content

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-5.7.2

apply_filters('user_confirmed_action_email_content') is found 2 times:

  • /wp-includes/user.php line 3662
    3658
    3659
    3660
    3661
    3662
    3663
    3664
    3665
    3666
    3667
    3668
    *     @type string          $siteurl     The site URL sending the mail.
     *     @type string          $admin_email The administrator email receiving the mail.
     * }
     */
    $content = apply_filters( 'user_confirmed_action_email_content', $email_text, $email_data );
     
    $content = str_replace( '###SITENAME###', $email_data['sitename'], $content );
    $content = str_replace( '###USER_EMAIL###', $email_data['user_email'], $content );
    $content = str_replace( '###DESCRIPTION###', $email_data['description'], $content );
    $content = str_replace( '###MANAGE_URL###', esc_url_raw( $email_data['manage_url'] ), $content );
    $content = str_replace( '###SITEURL###', esc_url_raw( $email_data['siteurl'] ), $content );
  • /wp-includes/user.php line 3863
    3859
    3860
    3861
    3862
    3863
    3864
    3865
    3866
    3867
    3868
    3869
    *     @type string          $sitename           The site name sending the mail.
     *     @type string          $siteurl            The site URL sending the mail.
     * }
     */
    $content = apply_filters( 'user_confirmed_action_email_content', $email_text, $email_data );
     
    $content = str_replace( '###SITENAME###', $email_data['sitename'], $content );
    $content = str_replace( '###PRIVACY_POLICY_URL###', $email_data['privacy_policy_url'], $content );
    $content = str_replace( '###SITEURL###', esc_url_raw( $email_data['siteurl'] ), $content );
     
    $headers = '';