2014-07-25, 07:36 AM
Hello,
it came to my attention that the activation e-mails, password reset e-mails as well as the test e-mails in the script below are not delivered to hotmail.com/outlook.com addresses, while they are correctly delivered to gmail.com addresses. The mails are also not in the spam folder of these addresses.
This script, from the MyBB docs section, did not give any errors:
There is simply no mail received on a hotmail/outlook.com address, also with this script.
The system mail log in the admin section has no relevant mail errors about the system generated mails either.
Not sure if this is an MyBB issue or more of an issue between my host and Microsoft's e-mail services.
Forum details:
Mailsetting: PHP
MyBB: 1.6.14
URL: www.tangodown.nl/forum
host: www.neostrada.nl
Any ideas what might be causing this issue?
it came to my attention that the activation e-mails, password reset e-mails as well as the test e-mails in the script below are not delivered to hotmail.com/outlook.com addresses, while they are correctly delivered to gmail.com addresses. The mails are also not in the spam folder of these addresses.
This script, from the MyBB docs section, did not give any errors:
<?php error_reporting(E_ALL); $to = '[email protected]'; if(mail($to, 'Testing mail', 'This is a mailing test to see if PHP mail works.')) { echo 'Mail was sent by PHP'; } else { echo 'PHP could not send the mail'; } ?>
There is simply no mail received on a hotmail/outlook.com address, also with this script.
The system mail log in the admin section has no relevant mail errors about the system generated mails either.
Not sure if this is an MyBB issue or more of an issue between my host and Microsoft's e-mail services.
Forum details:
Mailsetting: PHP
MyBB: 1.6.14
URL: www.tangodown.nl/forum
host: www.neostrada.nl
Any ideas what might be causing this issue?