﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
23291	wp_mail should handle phpmailer exceptions instead of ignoring them	mark-k		"Right now code in wp_mail that call phpmailer looks like

{{{
	try {
		$phpmailer->Send();
	} catch ( phpmailerException $e ) {
		return false;
	}
}}}

or worse (not failing at all).

Yesterday had to hack core files to find out that an email address did not have a valid email format. Exceptions should either propagate in some way, or be reported to an error log.
"	enhancement	new	normal	Awaiting Review	Mail	3.5	minor		has-patch	ian_dunn@…
