I've been doing testing lately (sending an email to myself through the form) because I was thinking of redesigning. It was working fine (not being blocked or anything) until last Saturday. But now, it passes the error checking and does nothing. Has something changed?
---------- Post added at 07:30 PM ---------- Previous post was at 07:18 PM ----------
Okay, I added a test php file to my public_html directory just for testing purposes. It should just send an email from myself to myself, but it still doesn't work. This is the entire code:
HTML Code:
<?php
$mailTo = 't44studio@gmail.com';
$mailFrom = 't44studio@gmail.com';
$subject = 'test subject';
$message = 'test message';
$headers = 'From: '.$mailFrom;
$success=mail($mailTo, $subject, $message, $headers);
if($success){echo "Success";}
?>
It echo's "Success", but doesn't send any email. It's not in my spam or my trash or anywhere. Am I missing something? This is driving me crazy!