Quote:
|
<p><br /><br />NOTE: A contact form such as this would require some way of emailing the input to a specified email address.</p>
|
So the form you've added isn't actually set up to send email...it is just a form!
There are two ways:
Use the mailto: function...
<form action="mailto:youremailaddresshere">
This way, you will get sent the data they have enetered into the form, however, the user will get no feedback on their submission. They will not get a thank you email, or directed to a thank you page. in fact they will have no way of telling if their form has been submitted or not.
The second way is using
PHP.You can do this if you have
PHP enabled on your hosting package. Using PHO you can do al sorts of nifty things. You can have the details emailed to you in a format you set, you can send a personalised thank you email to the user once they have submitted the form. You can add validation to check they are inputting a proper email address etc., you can redirect them to a thank you page once they have submitted their data...there is all sorts of things you can do.
PHP is definitely the way to go if you can. Search google for tutorials for sending mail or contact forms in
PHP. you should find loads of useful resources.
Mike