Changeset 61386
- Timestamp:
- 12/16/2025 11:51:05 AM (8 weeks ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/pluggable.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r61352 r61386 174 174 * @since 5.5.0 is_email() is used for email validation, 175 175 * instead of PHPMailer's default validator. 176 * @since 6.9.0 Added $embeds parameter.176 * @since 6.9.0 The `$embeds` parameter was added. 177 177 * @since 6.9.0 Improved Content-Type header handling for multipart messages. 178 178 * … … 194 194 * 195 195 * @since 2.2.0 196 * @since 6.9.0 The `$embeds` element was added to the `$args` array. 196 197 * 197 198 * @param array $args { … … 216 217 * 217 218 * @since 5.7.0 219 * @since 6.9.0 The `$embeds` element was added to the `$atts` array. 218 220 * 219 221 * @param null|bool $return Short-circuit return value. … … 574 576 * 575 577 * @param array $args { 576 * An array of arguments for `addEmbeddedImage()`. 578 * An array of arguments for PHPMailer's addEmbeddedImage() method. 579 * 577 580 * @type string $path The path to the file. 578 581 * @type string $cid The Content-ID of the image. Default: The key in the embeds array. … … 633 636 * 634 637 * @since 5.9.0 638 * @since 6.9.0 The `$embeds` element was added to the `$mail_data` array. 635 639 * 636 640 * @param array $mail_data { 637 * An array containing the email recipient(s), subject, message, headers, a nd attachments.641 * An array containing the email recipient(s), subject, message, headers, attachments, and embeds. 638 642 * 639 643 * @type string[] $to Email addresses to send message. … … 657 661 * 658 662 * @param WP_Error $error A WP_Error object with the PHPMailer\PHPMailer\Exception message, and an array 659 * containing the mail recipient, subject, message, headers, a nd attachments.663 * containing the mail recipient, subject, message, headers, attachments, and embeds. 660 664 */ 661 665 do_action( 'wp_mail_failed', new WP_Error( 'wp_mail_failed', $e->getMessage(), $mail_data ) );
Note: See TracChangeset
for help on using the changeset viewer.