Forum Moderators: coopster

Message Too Old, No Replies

PHP Script and AutoResponders

         

Saboi

9:55 am on Oct 7, 2008 (gmt 0)

10+ Year Member



Hi guys,

I have an email script which works just fine, except for one thing.

<?

$recipient = "#*$!@yyy.com";

$sender_address = $_POST["email"];

$message = "None";

$message_subject = "Tuition Fees";

if((empty($sender_address))){header("Location:input_error.php");}

else{mail($to=$recipient,$subject=$message_subject,$message=$message,$header="from:No Name<$sender_address>");}

?>

This works just fine. Th thing is that i have set an autoResponder to the address #*$!@yyy.com. However, when mail reaches it, the automated feedback is not sent.

Could it have to do with the script or a principle behind autoResponders?

dreamcatcher

2:28 pm on Oct 7, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Have you tried sending an e-mail to the same address using your e-mail program to see if that works?

dc