Hi all,I've been fidling around with Zend_Mail for seding messages - and I'm trying to accomplish capturing any errors while sending. I was using a
try {
$mail->send()
} catch ( Exception $e) {
// do something
}
block but if I use an impossible email address for example, I get an
on-screen php-warning from the mail() function.
Am I going about error-handling the wrong way?
Any help appreciated.. kind regards, Ramon
