Hi everyone,
I have a scenario that goes like this :
- Webflow Form Submission
- Router
- Set Variable
- Create Record in my CRM
- Send an Email internally through Brevo Send Email integration
In the form, people have a multiselect where they can choose the type of equipment they own.
The Set Variable module handles that. And the ouput can look like below
[
{
"type_installation": [
"PAC A/E",
null,
null
]
}
]
or
[
{
"type_installation": [
"PAC A/E",
null,
"PV"
]
}
]
Now, in the subject and the body of my email I send the following:
“Type of equipment : {{10.type_equipment}}” –> This is the Set Variable module.
The issue is that if the prospect selects only one service, I will receive
“Type of equipment : , , PV”
or
”Type of equipment : "PAC A/E, ,
I tried some join / map / replace / trim, but I never make it work…
I would appreciate your help to make it work
Cheers