apply_filters( 'auto_plugin_theme_update_email', array $email, string $type, array $successful_updates, array $failed_updates )

Filters the email sent following an automatic background update for plugins and themes.


Parameters

$email

Array of email arguments that will be passed to wp_mail().<br>

  • 'to'
    (string) The email recipient. An array of emails can be returned, as handled by wp_mail().<br>
  • 'subject'
    (string) The email's subject.<br>
  • 'body'
    (string) The email message body.<br>
  • 'headers'
    (string) Any email headers, defaults to no headers.<br>

$type

The type of email being sent. Can be one of 'success', 'fail', 'mixed'.

$successful_updates

A list of updates that succeeded.

$failed_updates

A list of updates that failed.


Source

File: wp-admin/includes/class-wp-automatic-updater.php

View on GitHub


Changelog

Changelog
Version Description
5.5.0 Introduced.