Email Confirmation

D

Debbie

I have a form on a page with a .asp extension. The
results are emailed. I would like an "email
confirmation/thank you" to be sent to the person who
submited the form. How do I do that?
 
T

Thomas A. Rowe

You need to duplicate the code use to send the current email, to then use the user's email address
to send a second email at the same time.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
A

Andrew Murray

The Frontpage form handler already has a "thankyou/confirm page" by default and
if you open a new page, go to the template pages there is the Thankyou page
template there that you can integrate into the the form sending email.

If you're not using the frontpage form hander then the third party script you're
using would have to have that functionality built in.

Alot of those form-emailing scripts I've seen usually do - it would normally be a
hidden form field type such as <input type="hidden" name="redirect"
value="../thankyou_feedback.htm">

Read the documentation for the script - it should have info abut that.

I have used this script in the past - called "formtoemail.asp"available free from
http://www.dynamic.ie
 
Top