I guess I should've put up the code the first time.
//send email to auto responder
mail("autoloan@listwarrior.com", "subscribe", "message",
"From: $POST[email]\n"
."Reply-To: $POST[email]\n"
."firstname: $POST[fname]\n"
."zipcode: $POST[zip]\n");
You can see I tried to put the firstname and zipcode as optional fields in the header. I really have no clue if it would work this way, and it didn't.
The reason I want it to go to the autoresponder is because it will send follow up messages automatically at every certain number of days. Ex. thankyou immediately, how is it going on day 3, try this new product on one week later, how have you been in 2 months.
Thanks for the help so far. If there is a way to do this entirely in php, that would be great, but I think it's pretty involved. I have searched far and wide for a timed autoresponder like this but in php, and no luck.
Cheers!
Jeff