user_erasure_fulfillment_email_content

user_erasure_fulfillment_email_content

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('user_erasure_fulfillment_email_content') is found 1 times:

  • /wp-includes/user.php line 4454
    	 *     @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 = '';