recovery_mode_email WordPress Filter Hook
The recovery_mode_email hook is used to send an email to the administrator when the site is in recovery mode. This email contains information about the site and how to recover it.
apply_filters( 'recovery_mode_email', array $email , string $url ) #
Filters the contents of the Recovery Mode email.
Parameters
(array)Used to build a call to wp_mail().
- 'to'
(string|array) Array or comma-separated list of email addresses to send message. - 'subject'
(string) Email subject - 'message'
(string) Message contents - 'headers'
(string|array) Optional. Additional headers. - 'attachments'
(string|array) Optional. Files to attach.
- 'to'
- $url
(string)URL to enter recovery mode.
Source
Changelog
Version | Description |
---|---|
5.6.0 | The $email argument includes the attachments key. |
5.2.0 | Introduced. |