| Use this HTML code to create LISTSERV® List subscription management forms for display on the Web. If you require additional forms, please submit a Help Ticket with your request. We will do our best to accommodate your needs. |
| Instructions |
| Copy/paste the code for the form you want to use onto your web page. Be sure to change the code in teal to the correct information for your list (see examples below) before you save/upload your web page. If you are using a page-building program such as FrontPage®, you must first switch to Source or HTML view, then paste the code onto the page. When using FrontPage®, be careful not to accidentally add extraneous code to the form when switching to Preview mode. FrontPage® often does this automatically. If this happens, you will need to remove the code FrontPage® added before saving/uploading or the form will not work. |
| Upload the form's custom SuccessPage and/or ErrorPage, if used, to your account's free web space using FTP. FTP instructions, including download links for several FTP programs, can be found at http://webhelps.com/ftp-instructions.shtml. Hidden form fields for both custom pages are included in all the forms below. If you do not want to use custom success/error pages, simply remove the applicable field(s) from the form, and default success/error page(s) will display. |
| Examples |
- SuccessPage
Page on your site you want people to go to after hitting the [Submit] button, such as SubscriptionThanks.html
- ErrorPage
Page on your site you want people to go to if they did not enter a required field, or did not enter a correctly formatted email address, such as SubscriptionError.html. [See Optional Error Page Code below]
- ListName
The name of your list, such as CandyRecipes, ClientNewsletter
- AccountName
The name of your WebHelps account (a/k/a WebHelps UserName) |
| Make changes to the following code at your own risk. If you make any changes to a form's code, we do not guarantee the form will work. Should you need us to troubleshoot a non-working form to which you have made code changes, you may be charged a service fee. |
Link to Online Subscription Manager
<a href="http://listserv.nethelps.com/wa.exe?SUBED1=ListName&A=1" target="_blank"></a> |
Subscription Form [first and last name required]
<form method='POST' action='http://mailpost.whathelps.com/mailpost.exe/GeneralSubscribe.txt'>
<input type='hidden' name='success' value='E:\Hosting\LocalUser\AccountName\SuccessPage'>
<input type='hidden' name='*on-error*' value='E:\Hosting\LocalUser\AccountName\ErrorPage'>
<input type='hidden' name='list' value='ListName'>
<table cellspacing=0 cellpadding=0 border=0>
<tr><td>Email Address: <input type='text' name='required-email'></td></tr>
<tr><td>First Name: <input type='text' name='required-first'></td></tr>
<tr><td>Last Name: <input type='text' name='required-last'></td></tr>
<tr><td><span style='color:red'>ALL FIELDS ARE REQUIRED</span></td></tr>
<tr><td><input type='submit' value='Subscribe'></td></tr>
</table></form> |
Subscription Form [no name]
<form method='POST' action='http://mailpost.whathelps.com/mailpost.exe/AlternateSubscribe.txt'>
<input type='hidden' name='success' value='E:\Hosting\LocalUser\AccountName\SuccessPage'>
<input type='hidden' name='*on-error*' value='E:\Hosting\LocalUser\AccountName\ErrorPage'>
<input type='hidden' name='list' value='ListName'>
<table cellspacing=0 cellpadding=0 border=0>
<tr><td>Email Address: <input type='text' name='required-email'></td></tr>
<tr><td><input type='submit' value='Subscribe'></td></tr>
</table></form> |
Unsubscribe Form
<form method='POST' action='http://mailpost.whathelps.com/mailpost.exe/GeneralUnsubscribe.txt'>
<input type='hidden' name='success' value='E:\Hosting\LocalUser\AccountName\SuccessPage'>
<input type='hidden' name='*on-error*' value='E:\Hosting\LocalUser\AccountName\ErrorPage'>
<input type='hidden' name='list' value='ListName'>
<table cellspacing=0 cellpadding=0 border=0>
<tr><td>Email Address: <input type='text' name='required-email'></td></tr>
<tr><td><input type='submit' value='Unsubscribe'></td></tr>
</table></form> |
|
| NOTE: In your error page, you will want to instruct the subscriber to use the browser's [Back] button to return to the subscription form. |