wppaste
WordPress

apply_filters( 'automatic_updates_debug_email', array $email, int $failures, mixed $results )

Since
3.8.0
Filters the debug email that can be sent following an automatic background core update.

Compatibility

WordPress
since 3.8.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Parameters

$emailarray
{ Array of email arguments that will be passed to wp_mail().
@type string $to The email recipient. An array of emails can be returned, as handled by wp_mail().
@type string $subject Email subject.
@type string $body Email message body.
@type string $headers Any email headers. Default empty.
}
  • $tostring

    The email recipient. An array of emails can be returned, as handled by wp_mail().
  • $subjectstring

    Email subject.
  • $bodystring

    Email message body.
  • $headersstring

    Any email headers. Default empty.
$failuresint
The number of failures encountered while upgrading.
$resultsmixed
The results of all attempted updates.

Where this hook fires · 1

  • wp-admin/includes/class-wp-automatic-updater.php:1741WP_Automatic_Updater::send_debug_email()

Source code

		 *     @type string $body    Email message body.		 *     @type string $headers Any email headers. Default empty.		 * }		 * @param int   $failures The number of failures encountered while upgrading.		 * @param mixed $results  The results of all attempted updates.		 */		$email = apply_filters( 'automatic_updates_debug_email', $email, $failures, $this->update_results ); 		wp_mail( $email['to'], wp_specialchars_decode( $email['subject'] ), $email['body'], $email['headers'] ); 		if ( $switched_locale ) {			restore_previous_locale();		}

Changelog

Introduced in 3.8.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 6.9.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.