<snip>

On Mon, 19 Mar 2001 01:34, Peter Houchin wrote:
> What am going to try & do is get it so mail() returns true then run
> this script else do this
>
> Peter

Like most functions in PHP, mail() returns a value - boolean according to 
the manual. So you could do something like

$mail = mail(values);
if ($mail){
 do this
}
else {
 error
}

But as has been pointed out above, a return of TRUE only means that 
mail() has handed the data off to something else, which something else 
may or may not succeed in sending the message.

-- 
David Robley                        | WEBMASTER & Mail List Admin

Thanks every one for your help :)
 

Peter

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to