Proximity
IDK?
- Feb 13, 2014
- 673
- 56
I have a php mail server on my VPS and it doesn't send the emails to personal emails like @mydomain.com
Here the script
Here the script
Code:
<?php
ini_set( 'display_errors', 1 );
error_reporting( E_ALL );
$from = "[email protected]";
$to = "[email protected]";
$subject = "PHP Mail Test script";
$message = "Sends to gmail but not personal servers";
$headers = "From:" . $from;
mail($to,$subject,$message, $headers);
echo "Test email sent";
?>