apply_filters( 'auto_core_update_send_email', bool $send, string $type, object $core_update, mixed $result )
- Since
- 3.7.0
Filters whether to send an email 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
$sendbool- Whether to send the email. Default true.
$typestring- The type of email to send. Can be one of 'success', 'fail', '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:935WP_Automatic_Updater::send_email()
Source code
* @param bool $send Whether to send the email. Default true. * @param string $type The type of email to send. Can be one of * 'success', 'fail', 'critical'. * @param object $core_update The update offer that was attempted. * @param mixed $result The result for the core update. Can be WP_Error. */ if ( 'manual' !== $type && ! apply_filters( 'auto_core_update_send_email', true, $type, $core_update, $result ) ) { return; } $admin_user = get_user_by( 'email', get_site_option( 'admin_email' ) ); if ( $admin_user ) {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 7.1.0 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.