Reached out to LiquidWeb and received this response:
"I do not see anything set up to prevent the PHP script from sending. To ensure this function is working, I created my own mail to PHP script and placed it on the server. If you click this link [removed], it will send an email to you. This will at least show you that the server is sending mail via php and not preventing it."
<?php
$to = "name@domain.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
Posted 12 years ago on Friday June 22, 2012 |
Permalink