Hi Community,
I have a confiforms checkbox group with multiple selections
1=selection1
2=selection2
I am trying to get the IFTTT form to generate an email where each of the checked selections appears on a new line (ie a linefeed after each selection so it displays as
"The following selections have been checked in the checkbox group
selection1
selection2
Other text in the IFTTT form"
I have tried
[entry.ITSysAccess.label.addCRLF] amongst others
Please assist me.. Kind regards
Hi
You can use something like
[entry.ITSysAccess.transform(label.addCRLFHtml)]
Or when using ConfiForms Field macro, setting the field name to
ITSysAccess.transform(label.addCRLFHtml)
Alex
Hi, this basically worked for me and checkbox group. But in the Email generated by IFTTT it shows like this:
[1. Die Dig
, 2. Kommunikation, Information
]
Can I somehow change to:
1. Die Dig
2. Kommunikation, Information
Kind regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can try something like
[entry.ITSysAccess.transform(label.addCRLFHtml).split(,)]
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
1.
2.
Much better. Is there any way to prevent the second line of paragraphs to be intended?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.