For some odd reason PHP mail() supports only certain emails. I'm trying to create an email confirmation system, but I can't do that if certain emails do not work. Heres what I have:
MyWork1229@gmail.com doesn't work. I've also tried the email drflax@comcast.net and got no luck. Finally, I tried my email algebrahelpsupport@gmail.com an it successfully sent the email. Is there any solution to this?
PHP:
$to = "MyWork1229@gmail.com";
$subject = "New visitor";
$message = "A new visitor with the ip $ip has visited your site! \n \n The total list is: $filetext1";
$from = "drflax@comcast.net";
$headers = "From: $from";
mail($to,$subject,$message,$headers);
MyWork1229@gmail.com doesn't work. I've also tried the email drflax@comcast.net and got no luck. Finally, I tried my email algebrahelpsupport@gmail.com an it successfully sent the email. Is there any solution to this?