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...
mail() blocked by some ISP in UK?
Moderator: General Moderators
mail() blocked by some ISP in UK?
Last edited by ipoh on Thu Jan 29, 2004 11:40 am, edited 1 time in total.
I just try again and found the two hosting ISP I use in UK here are blocking the mail() to send in & out, for both web server and mail server.
I have another hosting ISP based in U.S. is no problem at all for mail() sending in and out.
This happened since last week because I have a few customer asking me why not reply thier request.
I think this mail() is being block now.
Any help???
I have another hosting ISP based in U.S. is no problem at all for mail() sending in and out.
This happened since last week because I have a few customer asking me why not reply thier request.
I think this mail() is being block now.
Any help???