<form action="/webformmailer.php" method="post"> <input type="hidden" name="subject" value="Submission" /> <input type="hidden" name="redirect" value="thankyou.html" /> First Name: <input type="text" name="FirstName" /> Last Name :<input type="text" name="LastName" /> Email: <input type="text" name="email" /> Comments: <textarea name="comments" cols="40" rows="10"> Type comments here.</textarea> <input type="submit" name="submit" value="submit"/> <input type="hidden" name="form_order" value="alpha"/> <input type="hidden" name="form_delivery" value="hourly_digest"/> <input type="hidden" name="form_format" value="html"/> </form>[list=1][]If you create your own form tag, assign /webformmailer.php to the action attribute and set the form method to post: [/]
<form action="/webformmailer.php" method="post">[list=1][]In addition to the form fields you create, there are three hidden elements you can use. [/]form_format determines in what format the information is delivered. Its values are 'text', 'csv', 'html', 'xml', and 'default' (same as 'text'). form_order dictates in what order the fields are reported. Its values are 'default' (the same order as they appear on in the form), 'alpha' (alphabetized by field name) or a comma-separated, case-sensitive list of all or some field names. form_delivery determines the frequency and packaging of delivery. All form submissions are sent via an attachment. You can specify the form_delivery variables as one of the following: 'digest', 'hourly_digest', and 'daily_digest'. [list=1][]Once you are finished adding your Web form mailer click OK. [/]
<form action="/gdform.php" method="post"> <input type="hidden" name="subject" value="Form Submission" /> <input type="hidden" name="redirect" value="thankyou.html" /> <p>First Name:<input type="text" name="FirstName" /></p> <p>Last Name:<input type="text" name="LastName" /></p> <p>E-Mail:<input type="text" name="email" /></p> <p>Comments:<textarea name="comments" cols="40" rows="10"> Type comments here.</textarea></p> <input type="submit" name="submit" value="submit"/> </form>[list=1][]If you create your own form tag, assign your Web form mailer with unique names to your form items. [/]
NOTE: Keep in mind that our form-mailer script will sort the names of your form items alphabetically when it composes the email message. This is the order of precedence: uppercase letters, lowercase letters, numbers.[list=1][]For the form action line, enter /gdform.php. For example: [/]
<form action="/gdform.php" method="post">[list=1][]Set the form method to "post." [/][]In addition to the fields you create in your form, there are three special fields that you can use: subject, redirect, and email. [/]Subject. Controls the subject line in the form email. Redirect. Controls the page that your visitors will see after they submit the form. Email. Controls the return address for the form email. [list=1][] Once you are finished adding your Web form mailer click OK. [/]
AI智能回复搜索中,请稍后...