Filter hook 'recovery_mode_email'

in WP Core File wp-includes/class-wp-recovery-mode-email-service.php at line 223

Description

Filters the contents of the Recovery Mode email. }

Occurrences

Filename Line Number
wp-includes/class-wp-recovery-mode-email-service.php 223

Parameters

Type Name Description
array $email { Used to build a call to wp_mail().
string $url URL to enter recovery mode.

PHP Doc

/**
		 * Filters the contents of the Recovery Mode email.
		 *
		 * @since 5.2.0
		 * @since 5.6.0 The `$email` argument includes the `attachments` key.
		 *
		 * @param array  $email {
		 *     Used to build a call to wp_mail().
		 *
		 *     @type string|array $to          Array or comma-separated list of email addresses to send message.
		 *     @type string       $subject     Email subject
		 *     @type string       $message     Message contents
		 *     @type string|array $headers     Optional. Additional headers.
		 *     @type string|array $attachments Optional. Files to attach.
		 * }
		 * @param string $url   URL to enter recovery mode.
		 */