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.