apply_filters( 'recovery_mode_email', array $email, string $url )

Filters the contents of the Recovery Mode email.


Parameters

$email 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.
$url string
URL to enter recovery mode.

Top ↑

Source

File: wp-includes/class-wp-recovery-mode-email-service.php. View all references

$email = apply_filters( 'recovery_mode_email', $email, $url );


Top ↑

Changelog

Changelog
Version Description
5.6.0 The $email argument includes the attachments key.
5.2.0 Introduced.

Top ↑

User Contributed Notes

  1. Skip to note 2 content
    Contributed by Garrett Hyder

    It’s recommended to place your filter implementation into a separate plugin or mu-plugin to avoid Fatal Errors in your theme or plugin from causing the filter to never fire.
    This was recently experienced in core#47939 – https://core.trac.wordpress.org/ticket/47939

You must log in before being able to contribute a note or feedback.