Forum Moderators: coopster
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?