Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form with automatic response???

Status
Not open for further replies.

melstef

Programmer
Feb 19, 2003
69
CA
Hello, how do I make an form with automatic response??
I will explain: I have a form with 4 fields (name, company, phone number and e-mail). This is to join for our newsletter. I would like that when the person enters the information and click on join. A automatic response with the newsletter will be send to them without me having to send the newsletter manually.
Also, I would like that the information of the person will be kept somewhere (like sending me an email with the person's information or something like that).

Thanks for your help..
Melanie
 
You are able to build an email with the object below:
This would include the subject, email address, content, attachments etc.

set myMail = server.CreateObject("CDONTS.NewMail")

This can be gathered from a database or from data entered on a previous page on your web site. To get specifics on this just paste "server.CreateObject("CDONTS.NewMail")" in google and take a look at the information there.

Kent



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top