Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: automatic_updates_debug_email

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1003            *     @type string $to      The email recipient. An array of emails
1004            *                           can be returned, as handled by wp_mail().
1005            *     @type string $subject Email subject.
1006            *     @type string $body    Email message body.
1007            *     @type string $headers Any email headers. Default empty.
1008            * }
1009            * @param int   $failures The number of failures encountered while upgrading.
1010            * @param mixed $results  The results of all attempted updates.
1011            */
1012           $email = apply_filters( 'automatic_updates_debug_email', $email, $failures, $this->update_results );
1013
1014           wp_mail( $email['to'], wp_specialchars_decode( $email['subject'] ), $email['body'], $email['headers'] );
1015      }
1016 }
1017