Select Webserve Support
F.A.Q
Ask
a question
Search
F.A.Q
List
of all F.A.Q
Tutorial Movie
Ensim Pro Reseller Admin Series
Ensim Pro Site Admin Series
Ensim Pro End User Admin Series
Dreamweaver
MX Series
WS_FTP
Series
Cute
FTP Series
FrontPage
2002 Series
Help Desk
Documentation
Network Status
Contact Us
Live Help
|
|
|
|
faq : Ensim Unix : I want to use FormMail. Do you have a sample HTML form we can use? |
  |
|
| Question: | I want to use FormMail. Do you have a sample HTML form we can use? | | Answer: | download your formmailer here:
http://www.scriptarchive.com/download.cgi?s=formmail&c=tar.gz
The following HTML form is an example of a form that calls and uses the FormMail script:
Code:
| <form method=POST
action="http://yourdomain.com/cgi-bin/formmail/formmail.pl">
<input type=hidden name="recipient" value="username@yourdomain.com">
<input type=hidden name="subject" value="Form Results">
<input type=hidden name="return_link_url" value="http://yourdomain.com/">
<input type=hidden name="return_link_title" value="Back to the Home Page">
<table>
<tr>
<td class="formtext" align="right">First Name </td>
<td><input size="35" name="firstname"></td>
</tr>
<tr>
<td class="formtext" align="right">Last Name </td>
<td><input size="35" name="lastname"></td>
</tr>
<tr>
<td class="formtext" align="right">E-mail Address </td>
<td><input size="35" name="email"></td>
</tr>
<tr>
<td></td>
<td>
<textarea name="comment" rows="3" wrap="hard" cols="29">
</textarea>
</td></tr><tr>
<td></td><td>
<input type="submit" value="Submit">
</td></tr>
</table>
</form> |
|
| | last updated 31.01.2003 | |
| |
|
|