Ticket #10420: 10420_2.patch
| File 10420_2.patch, 483 bytes (added by nacin, 4 years ago) |
|---|
-
pluggable.php
374 374 $phpmailer->FromName = apply_filters( 'wp_mail_from_name', $from_name ); 375 375 376 376 // Set destination address 377 $phpmailer->AddAddress( $to ); 377 foreach ( (array) $to as $recipient ) { 378 $phpmailer->AddAddress( trim($recipient) ); 379 } 378 380 379 381 // Set mail's subject and body 380 382 $phpmailer->Subject = $subject;
