user_erasure_fulfillment_email_content

user_erasure_fulfillment_email_content

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('user_erasure_fulfillment_email_content') is found 1 times:

  • /wp-includes/user.php line 4510
    4506
    4507
    4508
    4509
    4510
    4511
    4512
    4513
    4514
    4515
    4516
    *     @type string          $sitename           The site name sending the mail.
     *     @type string          $siteurl            The site URL sending the mail.
     * }
     */
    $content = apply_filters( 'user_erasure_fulfillment_email_content', $content, $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###', sanitize_url( $email_data['siteurl'] ), $content );
     
    $headers = '';