Skip to content

Commit af78236

Browse files
author
iFlair
committed
Fix missing element in for wp_mail_succeeded filter
1 parent 0b50baa commit af78236

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wp-includes/pluggable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ function wp_mail( $to, $subject, $message, $headers = '', $attachments = array()
618618
*/
619619
do_action_ref_array( 'phpmailer_init', array( &$phpmailer ) );
620620

621-
$mail_data = compact( 'to', 'subject', 'message', 'headers', 'attachments' );
621+
$mail_data = compact( 'to', 'subject', 'message', 'headers', 'attachments', 'embeds' );
622622

623623
// Send!
624624
try {

0 commit comments

Comments
 (0)