Hi All,
In my form, I have check boxes which allows a multi-selection by the user.
Based on certain conditions, an email will trigger to an external party. If more than 1 box is selected, I need to include either "and" or ";" in the email, so it doesn't show as run on text.
Eg the email currently looks:
- If selecting 3 options: "Box 1 Box 2 Box 3"
- If selecting 2 options; "Box 2 Box 3"
- If selecting 1 option; "Box 1"
I need it to look like
- If selecting 3 options: "Box 1; Box 2 and Box 3"
- If selecting 2 options; "Box 2 and Box 3"
- If selecting 1 option; "Box 1"
Is there a way this can be done?