recovery_email_support_info filter-hookWP 5.2.0

Filters the support message sent with the the fatal error protection email.

Usage

add_filter( 'recovery_email_support_info', 'wp_kama_recovery_email_support_info_filter' );

/**
 * Function for `recovery_email_support_info` filter-hook.
 * 
 * @param string $message The Message to include in the email.
 *
 * @return string
 */
function wp_kama_recovery_email_support_info_filter( $message ){

	// filter...
	return $message;
}
$message(string)
The Message to include in the email.

Changelog

Since 5.2.0 Introduced.

Where the hook is called

WP_Recovery_Mode_Email_Service::send_recovery_mode_email()
recovery_email_support_info
wp-includes/class-wp-recovery-mode-email-service.php 141
$support = apply_filters( 'recovery_email_support_info', __( 'Please contact your host for assistance with investigating this issue further.' ) );

Where the hook is used in WordPress

Usage not found.