WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 247 | * @param string $to Email address to send message |
| 248 | * @param string $subject Email subject |
| 249 | * @param string $message Message contents |
| 250 | * @param string|array $headers Optional. Additional headers. |
| 251 | * @param string|array $attachments Optional. Files to attach. |
| 252 | * @return bool Whether the email contents were sent successfully. |
| 253 | */ |
| 254 | function wp_mail( $to, $subject, $message, $headers = '', $attachments = array() ) { |
| 255 | // Compact the input, apply the filters, and extract them back out |
| 256 | extract( apply_filters( 'wp_mail', compact( 'to', 'subject', 'message', 'headers', 'attachments' ) ) ); |
| 257 | |
| 258 | if ( !is_array($attachments) ) |
| 259 | $attachments = explode( "\n", $attachments ); |
| 260 | |
| 261 | global $phpmailer; |
| 262 | |
| 263 | // (Re)create it, if it's gone missing |
| 264 | if ( !is_object( $phpmailer ) || !is_a( $phpmailer, 'PHPMailer' ) ) { |
| 265 | require_once ABSPATH . WPINC . '/class-phpmailer.php'; |