Click to See Complete Forum and Search --> : basic froms - need to know how to e-mail forms from web pages


sheep
10-22-2003, 11:19 AM
I have no problem with the HTML side of forms. I have created a form that is posted back to myself once the user has filled it in. What I now need is to be able to read the e-mail with ease. Please could someone give me adive. Thanks.

Jona
10-22-2003, 01:54 PM
Your question is very vague, and I cannot be sure of what you are asking. Can you be a little more specific, please?

[J]ona

Khalid Ali
10-22-2003, 01:55 PM
<form id="form1" action="mailto:name@email.com" onsubmit="" method="post" enctype="text/plain">

make sure your form element looks like the above to send an email using mailto protocol(using server side solution will be a better choice)

sheep
10-23-2003, 04:15 AM
Thanks very much. I had left out enctype="text/plain". It has been six years since I last designed an HTML form that I had forgotten about it.