I have a flow that takes data from a form, and emails it. The data being input from the form includes the email address to send the data.
The responses from the form come out in a string (really it looks like an array formed into a string as it's a list of checkboxes that were marked)
Here are the checkboxes that were selected on the form, that come into my flow.
"[\"Lab1\\n\",\"Lab3\\n\",\"Lab2\"]"
I need to format this before it goes into an email, something that looks like a normal list:
Lab1
Lab2
Lab3
So far I've tried several variations of Data Compose, and createArray(), but nothing has worked.
So, my question is, how can I take in the selected checkboxes from my form, and get it into a format that isn't terrible in an email?