Thursday 03 February 2005 11:14:24 am
Anybody know why the receiver in this mail module us set to null? This seem to be the last time the receiver address is set before the SMTP server is contacted and could be my notification problem.
......
$mail->extractEmail( $addressItem, $email, $name );
$mail->addBcc( $email, $name );
}
$mail->setReceiver( '' );
$mail->setSender( $emailSender );
$mail->setSubject( $subject );
$mail->setBody( $body );
.....
|