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
    	 *     @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
    	 *     @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 = '';