auto_core_update_email
Filters the email sent following an automatic background core update.
Usage
add_filter( 'auto_core_update_email', 'wp_kama_auto_core_update_email_filter', 10, 4 ); /** * Function for `auto_core_update_email` filter-hook. * * @param array $email Array of email arguments that will be passed to wp_mail(). * @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. * * @return array */ function wp_kama_auto_core_update_email_filter( $email, $type, $core_update, $result ){ // filter... return $email; }
- $email(array)
Array of email arguments that will be passed to wp_mail().
-
to(string)
The email recipient. An array of emails can be returned, as handled by wp_mail(). -
subject(string)
The email's subject. -
body(string)
The email message body. - headers(string)
Any email headers.
Default: no headers
-
- $type(string)
- The type of email being sent. Can be one of 'success', 'fail', 'manual', 'critical'.
- $core_update(object)
- The update offer that was attempted.
- $result(mixed)
- The result for the core update. Can be WP_Error.
Changelog
Since 3.7.0 | Introduced. |
Where the hook is called
auto_core_update_email
wp-admin/includes/class-wp-automatic-updater.php 1139
$email = apply_filters( 'auto_core_update_email', $email, $type, $core_update, $result );