Hi everyone.
All my PHP scripts were working fine until a few days ago. Then, for no apparent reason, the mail() function on all of them stopped working. The rest of the PHP works fine, but I cannot receive any emails from them. I had not changed any of the scripts.
My website is hosted by an ISP and they are being very helpful but they say there is nothing wrong with the PHP engine.
I put together a test page at http://www.autojunction.co.uk/mailtest.htm and this form posts to a file called mailtest.php.
This is a copy of my PHP script:
<?php
$MailAddress=$_POST['EmailTest'];
mail($MailAddress,"test","is this working??");
print("test complete");
?>
Any ideas??