I have a form with the following checkboxes:
- Arrange a free consultation (Value: Consultation Requested)
- Call me back - I have a quick question (Value: Call Back Requested)
- I would like further information (Value: Further Information Requested)
- We will send you promotions, news and offers. Tick this box if you do not wish to receive this (Value: Optout)
And I need them to output in the email like so:
Consultation Requested: Yes
Consultation Requested: No
Is there any way of using a conditional like:
{Arrange a free consultation:16.1}: <?php if checked : echo 'yes'; else : echo 'no'; endif; ?>
Or do you have any ideas how I could go about having it output the way it needs to be?
Thanks,