Loop
A Loop activity contains an embedded activity that executes for each item in an array. Within the loop, you can use value
to reference the current item in the array.
For instance, you can automate a welcome email to new customers and personalize the message for each recipient by using placeholders like {{ value.email }}
and {{ value.name }}
.
Configure execution mode
Loop activity support different modes for processing loop iterations:
Parallel: Executes all iterations simultaneously. Sequential: Executes each iteration one at a time. Batch: Combines parallel and sequential modes to execute a parallel iterations in batches.
Advanced Options
For more information on advanced settings, see the Advanced Options documentation.