|
From an HTML Form to an Email InboxGetting the html form data in the email inbox will be a very convenient way to collect user responses very quickly. Except, when you have hundreds of responses per day! Here are the methods you have to get the html form data in your email inbox.
One quick and simple method is to use the 'mailto:you@yourdomain.com'
in the 'action' field of the form. This method is very simple; but has many
drawbacks. Note: Using Simfatic Forms you can create web forms and get the form submissions by email. Simfatic Forms generates all the code. See the article: how to make web forms quickly. Using a Formmail ScriptA formmail script is a server side script that gathers the data submitted in the form and mails it to a given email address.There are many formmail scripts available. The following section describes how to use a form mail script Suppose the URL to the formmail script provided to you is http//someserver/cgi-bin/formmail.plgive this URL in the ACTION attribute of your FORM tag
<FORM ACTION="http//someserver/cgi-bin/formmail.pl" METHOD="POST">
provide these data as hidden fields in the form (using <INPUT TYPE="hidden" ......>)Over! you are ready with your form. Read More: |
|
. Copyright © 2003-2009 JavaScript-coder.com. All rights reserved. |
||