Hello x10 Forum! Hope all is well....
So, just to get this out of the way...
My email form essentially comes down to the code below. Note that xxx in email header is email account info created in x10 cPanel.
This worked... till about 6 hours ago. Then, *POOF*, nothing and I mean NOTHING. No script errors, no log errors, no emails are being sent (I'm developing on a WAMP environment, mail is sent thru smtp via sendmail, BUT I have also tested from x10 servers).
To be sure my code is OK I have successfully sent mail through smtp.live.com with no problems.
I can't figure this one out. Is there something I am missing when it comes to x10 mail servers? Is it possible that microsoft/hotmail has just blacklisted my x10 email? I dunno...
Any help or suggestions would be greatly appreciated!
So, just to get this out of the way...
My email form essentially comes down to the code below. Note that xxx in email header is email account info created in x10 cPanel.
Code:
if ($formOk) {
$headers = 'From: xxx@xxx.x10.mx' . PHP_EOL;
$headers .= 'Reply-To: ' . $name . ' <' . $email . '>' . PHP_EOL;
$headers .= 'MIME-Version: 1.0' . PHP_EOL;
$headers .= 'Content-type: text/html; charset=UTF-8';
$emailbody = $name . ', <br>';
$emailbody .= $email . '<br><br>';
$emailbody .= $message . '<br><br><br>';
$emailbody .= 'Sent from IP Address: ' . $ipaddress . '<br>';
$emailbody .= 'This can be usefull for black-listing spam!';
mail("myemail@hotmail.com", $subject, $emailbody, $headers);
}
This worked... till about 6 hours ago. Then, *POOF*, nothing and I mean NOTHING. No script errors, no log errors, no emails are being sent (I'm developing on a WAMP environment, mail is sent thru smtp via sendmail, BUT I have also tested from x10 servers).
To be sure my code is OK I have successfully sent mail through smtp.live.com with no problems.
I can't figure this one out. Is there something I am missing when it comes to x10 mail servers? Is it possible that microsoft/hotmail has just blacklisted my x10 email? I dunno...
Any help or suggestions would be greatly appreciated!
Last edited: