sritem/sridx
# Given
call_for_each = ["[email protected]", "[email protected]", "[email protected]"]
# First iteration
fitem ==> "[email protected]"
fidx ==> 0
# Second iteration
fitem ==> "[email protected]"
fidx ==> 1
etc...# Given
call_for_each = [
{"name": "Sally", "email": "[email protected]"},
{"name": "Benjamin", "email": "[email protected]"},
{"name": "David", "email": "[email protected]"}
]
# To send an email to each individual, set the following on the service request's field mapping
field: email_address
value: sritem.email
Last updated
Was this helpful?