Confirmation E-mail: Display Unselected Checkbox
-
I have forms where the user can check or uncheck a checkbox, among other things. I would like to send a confirmation mail letting the user know what they submitted, along the lines of:
Your name: [name] You selected xyz: [xyz-Checkbox]If the user checks the checkbox, the e-mail reads:
Your name: Audrey You selected xyz: selectedIf the user does not check the checkbox, the e-mail reads:
Your name: Audrey You selected xyz:This confuses a lot of users, as they think they mistakenly checked the checkbox (when they really didn’t). This is because the [xyz-Checkbox] tag resolves to an empty string in this case.
–> How can I make the confirmation e-mail read
Your name: Audrey You selected xyz: not selectedif the user leaves the xyz checkbox unchecked?
The topic ‘Confirmation E-mail: Display Unselected Checkbox’ is closed to new replies.