Ticket #18926: pluggable.php.3.diff
File pluggable.php.3.diff, 547 bytes (added by , 13 years ago) |
---|
-
wp-includes/pluggable.php
432 432 // Send! 433 433 try { 434 434 $phpmailer->Send(); 435 } catch ( phpmailerException $e ) { 435 } catch ( phpmailerException $e ) { 436 437 $mail_error_data = compact( $to, $subject, $message, $headers, $attachments ); 438 do_action( 'wp_mail_fail', new WP_Error( $e->getCode(), $e->getMessage(), $mail_error_data ) ); 439 436 440 return false; 437 441 } 438 442