PDA

View Full Version : Homepage question


aimee_anton
Sat 20th Dec '03, 4:20pm
I am new to HTML. I am making a website and I have a "quote" page where people can e-mail me quotes. At the bottom of the page, it has a "submit" button. My question is, how can I get that quote sent directly to my e-mail when they click on "submit"? Is there certain tags that I need to input and if so, which ones. I greatly appreciate any help.

Nmare
Sat 20th Dec '03, 11:54pm
<form action="mailto:youremailhere" method="POST">

Put that where you want your form to start.
That's what tells the submit button what to do.

Then put all your form fields, then your submit button. Then put in </form> to close your form.