Changeset 49692 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 11/24/2020 09:20:36 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r49193 r49692 166 166 * @param string $message Message contents 167 167 * @param string|array $headers Optional. Additional headers. 168 * @param string|array $attachments Optional. Files to attach.168 * @param string|array $attachments Optional. Paths to files to attach. 169 169 * @return bool Whether the email contents were sent successfully. 170 170 */ … … 177 177 * @since 2.2.0 178 178 * 179 * @param array $args A compacted array of wp_mail() arguments, including the "to" email, 180 * subject, message, headers, and attachments values. 179 * @param array $args { 180 * Array of the `wp_mail()` arguments. 181 * 182 * @type string|string[] $to Array or comma-separated list of email addresses to send message. 183 * @type string $subject Email subject. 184 * @type string $message Message contents. 185 * @type string|string[] $headers Additional headers. 186 * @type string|string[] $attachments Paths to files to attach. 187 * } 181 188 */ 182 189 $atts = apply_filters( 'wp_mail', compact( 'to', 'subject', 'message', 'headers', 'attachments' ) );
Note: See TracChangeset
for help on using the changeset viewer.