2.4🔖Let's Transform Data Inline
Last updated
Was this helpful?
Edit the Notification step
In the Send To field:
Select the emails variable from Data Hub
👉 Now, instead of using it directly, apply transformation:
{{variables.emails.join(",")}}
📌 Why?
The system expects comma-separated emails
But our variable is a JSON array
.join(",") converts it into the required format

To explore more, check Inline Transformations and Allowed Functions in Inline Transformation with examples.
Last updated
Was this helpful?
Was this helpful?