mail() blocked by some ISP in UK?
Posted: Thu Jan 29, 2004 11:15 am
I got a php pages for my customer to send me request.
The php page worked for 4 months, but today I found that those request sending out from that page not receiving by me.
So then I try to change the sent to email adress in that page to my other email address like Hotmail and I can receive it.
I wonder the some mail server are blocking the mail().
I got 3 different domain mail server to test, 2 failed and 1 passed.
Here below is a simple mail() page I created.
<?php
mail("user@domain.co.uk", "the subject is subject", "message body here",
"From: root@$SERVER_NAME\r\n"
."Reply-To: root@$SERVER_NAME\r\n"
."X-Mailer: PHP/" . phpversion());
?>
Please advice...
The php page worked for 4 months, but today I found that those request sending out from that page not receiving by me.
So then I try to change the sent to email adress in that page to my other email address like Hotmail and I can receive it.
I wonder the some mail server are blocking the mail().
I got 3 different domain mail server to test, 2 failed and 1 passed.
Here below is a simple mail() page I created.
<?php
mail("user@domain.co.uk", "the subject is subject", "message body here",
"From: root@$SERVER_NAME\r\n"
."Reply-To: root@$SERVER_NAME\r\n"
."X-Mailer: PHP/" . phpversion());
?>
Please advice...