
Originally Posted by
ianobetz
Log:
Fri Jun 10 20:56:01 2011 [24474][c8ff05cf-a819-dd9a-48ce-4dc45c7d0695][FATAL] SUGAREMAILADDRESS: address did not validate [ ****29Yahoo.com ]
well that first error seems fairly straight forward.
It might be helpful if you edited
modules/EmailMan/EmailManDelivery.php around line 225 and change
PHP Code:
if(!$emailman->sendEmail($mail,$massemailer_email_copy,$test)){
$GLOBALS['log']->fatal("Email delivery FAILURE:" . print_r($row,true));
} else {
$GLOBALS['log']->debug("Email delivery SUCCESS:" . print_r($row,true));
}
if($mail->isError()){
$GLOBALS['log']->fatal("Email delivery error:" . print_r($row,true). $mail->ErrorInfo);
}
to
PHP Code:
if(!$emailman->sendEmail($mail,$massemailer_email_copy,$test)){
$GLOBALS['log']->fatal("Email delivery FAILURE:" . var_export($mail,true));
} else {
$GLOBALS['log']->debug("Email delivery SUCCESS:" . var_export($mail,true));
}
if($mail->isError()){
$GLOBALS['log']->fatal("Email delivery error:" . var_export($mail,true). $mail->ErrorInfo);
}
and see what that gives. Its a change I am thinking about suggesting to engineering to be included in the product.
Bookmarks