When we defined the collection, List of Items to Purchase, earlier, we supplied the name of the item as well as the requester's name. Given the name of the requester, we want to get their email address so that we can notify them at the end of the process whether or not the item was successfully purchased.
We may have a look-up table that matches the name of the person to their email address:
Name | Email address |
Henry | henry@somewhere.com |
Peter | peter@somewhere.com |
Margaret | margaret@somewhere.come |
Otherwise | admin@somewhere.com |
Let's program this logic to perform this matching to the process using a Choice stage.
- Open the Send Email Notification sub-page. Delete the ...