-
There is no reason for mail not working as it works on our demo site and for all others, so only reason i can see is mail server problem (may be black listed).
As for the static page problem, check the permission now, this will only happen if you have wrong permission/owenership.
-
They're telling me that there's nothng wrong with the mail servers and that it's a script issue (which I doubt is true). So, why the "send mail test" didn't work, which is a basic script for testing php send mail, indicates to me that it's a problem on my host end really.
-
There should be some problem... may be ip got blacklisted, it way server admin can easily find out what is going on the server by checking the mail server log.
-
Well, to test this theory, I tried a different "test mail" script on my main domain and it worked fine.
<?php
//define the receiver of the email
$to = '[email protected]';
//define the subject of the email
$subject = 'Test email';
//define the message to be sent. Each line should be separated with \n
$message = "Hello World!\n\nThis is my first mail.";
//define the headers we want passed. Note that they are separated with \r\n
$headers = "From: [email protected]\r\nReply-To: [email protected]";
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed"
echo $mail_sent ? "Mail sent" : "Mail failed";
?>
I don't know WHY the basic one doesn't work on my main domain but this one does. Weird, huh.
I tried this script on my second video site "sca-video.com" and it's not working their either. None of the "mail test" scripts are working. I'll have to get a higher level tech or something or find out if I've been blacklisted (my sites are extremely low traffic [almost non-existant] so I don't think I'm blacklisted, but it won't hurt to check).
I'm also going to have to try this on all my domains and send a report to tech support. Bleh.
-
UPDATE
The email is now working. It took a long time for the mail to be sent, but it's finally received. Maybe when I sent my email to tech support they "kicked it". I don't know....
The nice thing about all this is that there is no law against bashing computers around a bit.