Index: includes/phpmailer.drupal.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/phpmailer/includes/phpmailer.drupal.inc,v retrieving revision 1.1.2.1.2.1 diff -u -r1.1.2.1.2.1 phpmailer.drupal.inc --- includes/phpmailer.drupal.inc 19 Jan 2009 16:10:30 -0000 1.1.2.1.2.1 +++ includes/phpmailer.drupal.inc 17 Mar 2009 23:03:12 -0000 @@ -120,10 +120,8 @@ watchdog('phpmailer', t('Error sending e-mail (from %from to %to): %error.', array('%from' => $from, '%to' => $to, '%error' => $mail->ErrorInfo)), WATCHDOG_ERROR); } - // Reset object properties when keep-alive is enabled. - if ($mail->SMTPKeepAlive) { - $mail->Reset(); - } + // Reset object properties. + $mail->Reset(); if ($mail->SMTPDebug) { if ($debug = ob_get_contents()) {