sritem/sridx
# Given
call_for_each = ["abc@email.com", "def@email.com", "ghi@email.com"]
# First iteration
fitem ==> "abc@email.com"
fidx ==> 0
# Second iteration
fitem ==> "def@email.com"
fidx ==> 1
etc...# Given
call_for_each = [
{"name": "Sally", "email": "sally@email.com"},
{"name": "Benjamin", "email": "benjamin@email.com"},
{"name": "David", "email": "david@email.com"}
]
# 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?