Forums
This topic is locked
New person problem!
Posted 01 Apr 2007 06:26:39
1
has voted
01 Apr 2007 06:26:39 robert hudson posted:
I have created a quiz using a form with Dreamweaver MX 2004.How do I get the data submitted to my e-mail? I do not know anything about ASP or CF mail. My experiance is on the lower end. Would somebody please help me?Thanks,
R.H.
Replies
Replied 04 Apr 2007 20:09:09
04 Apr 2007 20:09:09 Alan C replied:
have a look at Forms to go - or Formmail
Replied 10 Apr 2007 20:45:53
10 Apr 2007 20:45:53 The Locust replied:
Hi Robert,
It sounds like you just want to create a simple form that is submitted to your email. If my assumption is correct, then you just need to add the following to your form tag:
<form method="post" enctype="text/plain" action="mailto: ">
You want to be sure to replace "youremail" and "yourdomain.com" with your email and domain, respectively.
As far as Dreamweaver goes, I did not find this feature available. I had to enter it manually.
Anyhow, you don't need a server side script for this.
Hope this answers your question.
It sounds like you just want to create a simple form that is submitted to your email. If my assumption is correct, then you just need to add the following to your form tag:
<form method="post" enctype="text/plain" action="mailto: ">
You want to be sure to replace "youremail" and "yourdomain.com" with your email and domain, respectively.
As far as Dreamweaver goes, I did not find this feature available. I had to enter it manually.
Anyhow, you don't need a server side script for this.
Hope this answers your question.