apply_filters( 'auto_core_update_email', array $email, string $type, object $core_update, mixed $result )
- Since
- 3.7.0
Filters the email sent following an automatic background core update.
Compatibility
- WordPress
- since 3.7.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 The email's subject.
@type string $body The email message body.
@type string $headers Any email headers, defaults to no headers.
}$tostringThe email recipient. An array of emails can be returned, as handled by wp_mail().$subjectstringThe email's subject.$bodystringThe email message body.$headersstringAny email headers, defaults to no headers.
$typestring- The type of email being sent. Can be one of 'success', 'fail', 'manual', 'critical'.
$core_updateobject- The update offer that was attempted.
$resultmixed- The result for the core update. Can be WP_Error.
Where this hook fires · 1
wp-admin/includes/class-wp-automatic-updater.php:1147WP_Automatic_Updater::send_email()
Source code
* } * @param string $type The type of email being sent. Can be one of * 'success', 'fail', 'manual', 'critical'. * @param object $core_update The update offer that was attempted. * @param mixed $result The result for the core update. Can be WP_Error. */ $email = apply_filters( 'auto_core_update_email', $email, $type, $core_update, $result ); wp_mail( $email['to'], wp_specialchars_decode( $email['subject'] ), $email['body'], $email['headers'] ); if ( $switched_locale ) { restore_previous_locale(); }Changelog
Introduced in 3.7.0. Unchanged from 6.7.7 through 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.