I have the following code:
if (mail($mail_to, $mail_subject,$mail_body,$sendmail_from))
echo "<h4>Followup email sent</H4>";
else
echo "<h4>Mail not delivered, check email address</h4>";
No matter if the $mail_to address is bad the function returns true.
Thanks.
Aaron