Hello,
i’m trying to iterate through a list of values in an excel cell and extract the email from each user. below is an example of what it looks like.
i’m able to grab the email from the first line in this example as it is only a basic split to grab the single email. my question is what logic do i use if sometimes i have 2 or 3, etc…?
i tried splitting on the “;” but don’t know what to do next with the array to be able to grab all of the emails. i also need to take those emails (for example, if there are 3 in a single line) and attach them to a single email to send to that whole group.
FYI, on the first example, i split on " " to isolate the email address and used a substring value to remove the brackets on either side.
@Anil_G,
This method is working. Could you possibly tell me how to implement this array into the send outlook message activity? Can i put the array Variable into the “to” field? Or, do i need to somehow make it into string? can i just add it as “EmailArray.ToString” and it will add all emails in the array to that field?