$mail = mail('test@test.test', 'subject', 'message');
if ($mail) {echo 'mail send OK';} else {echo 'mail send FAIL';
If(Mail(parameters)){
//sent
}else{
//not sent
}
Wouldn't the two be the same??
Also, if using my method (second one) returned true & went into the //sent code, what reasons would there be as to people not receiving the email??
Thanks!