Index: wp-includes/pluggable.php
===================================================================
--- wp-includes/pluggable.php	(revision 19998)
+++ wp-includes/pluggable.php	(working copy)
@@ -433,6 +433,10 @@
 	try {
 		$phpmailer->Send();
 	} catch ( phpmailerException $e ) {
+		
+		$mail_error_data = compact( $to, $subject, $message, $headers, $attachments );
+ 		do_action( 'wp_mail_failed', new WP_Error( $e->getCode(), $e->getMessage(), $mail_error_data ) );
+		
 		return false;
 	}
 
