Sending a form to an email address
I want to create a HTML form and send the form contents using a submit button to an email address.
How do I do this without using PHP or Perl or any other scripting language as hpage does not support any script.
I used the following code but it opens a dialog box to configure my email server.This is a disincentive for the user of my site.
<form action="mailto:you@yourdmainhere.com" method="post" enctype="text/plain" >
FirstName:<input type="text" name="FirstName">
Email:<input type="text" name="Email">
<input type="submit" name="submit" value="Submit">
</form>
Can I modify the Contact form facility in hpage?
|