Im building an automated newsletter, im kinda stuck with this problem. I need to know if the email was sent or not. Here is my code
@$send = mail($emailReci
$send = mail($emailRecipient, $subject, $message, $headers);
Check the returned value of $sent like If($send['error_code'] == 0) { echo "successful"; } Else { Echo "error"; }