How can I check a problem with mail being sent on my server? I run a simple test:
if(mail($to, $subject, $message)) {
echo 'Mail Sent';
}
which the test outputs the text. But no mail ever arrives.
How can I go about tracking down the issue? Thanks Rich