Click to See Complete Forum and Search --> : If this possible?


Solace
09-29-2004, 03:33 PM
Hello all. I have a standard asp form that collects user information and then sends the results to me. Is it possible to also send an email to the person who filled out the form? For example after they click submit they will receive an email shortly with some text in the body like "Thank you for submitting, someone will be in contact with you blah blah". Thanks much.

chrismartz
09-29-2004, 05:37 PM
i'm sure there is a way but i'm going to give an easy way.....set up an email account only for this purpose....then have an auto response set to automatically respond to any email!

Solace
09-29-2004, 05:49 PM
ahh, and then use AddRecipient to also send the form to the auto response email. Cant believe I didnt think of that. Just out of curiosity, how would I go about it the other way?

chrismartz
09-29-2004, 06:04 PM
I think you could put two scripts on one submit page and have them execute....just have one sent to you and the other sent to the client....and have different messages sent!

buntine
09-30-2004, 04:16 AM
There is no reason why you cant just send two emails from one script. You dont need two scripts to do it.

You pretty much just have to copy your current code and change the values.

Regards.

Solace
09-30-2004, 03:56 PM
Buntine, how would this be accomplished? I want the email that comes to me be the standard form info, but I want the one that goes to the user to have custom text as I said in an earlier post.