Hi,
I created a form using the wizard (latest version). In it I have two check box areas with multiple items. In the email with results I always get the same text, no matter which box is checked.
Any ideas how this can be corrected?
Thanks!
Here's what I get in the mail - no matter which box is ticked:
Here's the mail template:
And this is the code:
I created a form using the wizard (latest version). In it I have two check box areas with multiple items. In the email with results I always get the same text, no matter which box is checked.
Any ideas how this can be corrected?
Thanks!
Here's what I get in the mail - no matter which box is ticked:
I would like:
an on-line demo an on-line demo
an on-line demo more written information
an on-line demo to try the software
Here's the mail template:
I would like:
{check1} an on-line demo
{check1} more written information
{check1} to try the software
And this is the code:
<div class="form_item">
<div class="form_element cf_checkbox">
<label class="cf_label">I would like:</label>
<div class="float_left">
<input value="an on-line demo" class="radio radio radio radio radio radio radio radio" id="an_on-line_demo" name="check1[]" type="checkbox" />
<label for="an_on-line_demo" class="check_label">an on-line demo</label>
<br />
<input value="more written information" class="radio radio radio radio radio radio radio radio" id="more_written_information" name="check1[]" type="checkbox" />
<label for="more_written_information" class="check_label">more written information</label>
<br />
<input value="to try the software" class="radio radio radio radio radio radio radio radio" id="to_try_the_software" name="check1[]" type="checkbox" />
<label for="to_try_the_software" class="check_label">to try the software</label>
<br />
</div>
</div>
<div class="clear"> </div>
</div>