This is my form code for the checkboxes:
<div class="form_item">
<div class="form_element cf_checkbox ">
<label class="cf_label" style="width: 200px;">Preferred Consultation Day:</label>
<div class="float_left">
<input value="Wednesday" title="" class="radio" id="check00" name="check0[]" type="checkbox" />
<label for="check00" class="check_label" style="padding-left:20px;">Wednesday 10-4pm</label>
<br />
<input value="Thursday" title="" class="radio" id="check01" name="check0[]" type="checkbox" />
<label for="check01" class="check_label" style="padding-left:20px;">Thursday 10-4pm</label>
<br />
<input value="Friday" title="" class="radio" id="check02" name="check0[]" type="checkbox" />
<label for="check02" class="check_label" style="padding-left:20px;">Friday 10-4pm</label>
<br />
<input value="Saturday" title="" class="radio" id="check03" name="check0[]" type="checkbox" />
<label for="check03" class="check_label" style="padding-left:20px;">Saturday 9-12pm</label>
<br />
<input value="Sunday" title="" class="radio" id="check04" name="check0[]" type="checkbox" />
<label for="check04" class="check_label" style="padding-left:20px;">Sunday (special appointment only)</label>
<br />
</div>
</div>
<div class="cfclear"> </div>
</div>
The code for the email template is as follows:
Preferred Consultation Day: {check0}
The "Chronoforms handle my posted arrays" is set ON.
What have I missed?
Thanks Nicola