PDA

View Full Version : Submitting a form


Vonder
12-12-2002, 04:31 AM
First of all, I apologize if my english is not very good, I am from Argentina (spanish is my native language).

Now: I´m making a form for a website (I´m using Dreamweaver 4). And what I want, is that when the users complete the form and click submit, the form be submitted to my e-mail. Is that possible? Is it too difficult? Is there an easier way for me to get the info from that form??

Thank you very much,
PABLO

PauletteB
12-12-2002, 05:46 AM
Is that possible? Easy...
<form enctype="text/plain" action="mailto:you@hotmail.com" method="post">
<input type="text" name="customer">
<input type="text" name="address">
<input type="submit" value="Send">
</form>
Is there an easier way for me to get the info from that form?
A more reliable way is to use something like
Bravenet's free email form service (http://www.bravenet.com/samples/emailforms.php)

Vonder
12-12-2002, 12:22 PM
Thanks. I´ll try it.