The PHP Worldpay Callback and Paypal IPN scripts in my shopping cart have suddenly stopped sending customer emails although I have not changed them.
Did a test post to the v simple script below and it says sent successfully but no email is received. Any ideas what might have caused this problem? Ta.
<?php
$to = "myemail@btinternet.com";
$subject = "This is a test email";
$message = "This is a test email";
if (mail($to,$subject,$message))
{
echo "Mail sent successfully";
}
else
{
echo "Can't send email";
}
?>
Did a test post to the v simple script below and it says sent successfully but no email is received. Any ideas what might have caused this problem? Ta.
<?php
$to = "myemail@btinternet.com";
$subject = "This is a test email";
$message = "This is a test email";
if (mail($to,$subject,$message))
{
echo "Mail sent successfully";
}
else
{
echo "Can't send email";
}
?>

Comment