Overview
Standard POST form for autoresponder signup. For this method, visitor will leave your website each time the button is pressed. It's not as slick as Ajax, but it's much easier to integrate. If the Ajax seems a little complicated, you should use this method or the GET method.

Please read to this information carefully.
Add the following code anywhere between your pages <body></body> tags
This code should go between your body tags.
Required POST Parameters
The following parameters are required:

Name Value
nm For first name field.
nm2 For last name field.
em For email field.
cid Hidden field ONLY. Contains campaign ID.
mthd Hidden field ONLY. Required so system knows POST method is invoked.
Customisation
You should use an existing websites CSS file or inline styles to format your form. The form code provided is basic and has no formatting.
Multiple Boxes on Same Page
You can have multiple boxes on a single page. Just copy and paste the code, each form will work independently.
Custom Field Capture & Dynamic Tags
Unlimited form data can be captured at the point of signup. This is useful if you want to capture form data and include it in your broadcast and follow up messages to subscribers via dynamic tags. For this to work, add hidden form or standard input boxes within the form field. The name of the input boxes isn't important. An example:

<input type="text" name="some_field_name" value="my value">
<input type="hidden" name="some_other_field_name" value="my other value">
The field names must only contain alphanumeric characters, underscores and hyphens, anything else will be converted to hyphens. Please note the following:

- The form fields must NOT contain the same names as the required fields above.

- If the boxes are text input boxes requiring visitor interaction, you are responsible for validating the data being entered is correct before the form is submitted to the responder system. Note that for a layer of security Maian Responder will strip any HTML tags from the field values.

- If a field already exists for a subscriber it will be updated with the new value.

- If a field doesn't exist for a subscriber it will hold no value.


Once you have captured data, read up on how to include the fields as custom dynamic tags here.
Wordpress Integration
This is an easy option to add to Wordpress. Just copy code into any page or custom template.