
Announcements
All,
I have a variable where I am storing multiple email addresses. I would like to add all of them in my "Required Attendee" field so they will all be added to my Teams meeting.
How can I achieve this? It says I need to separate by semicolon, so do I need to include the semicolon in my variable?
How are they stored in your variable at the moment? If it's an array of emails, then you can join each of them delimited by a semicolon.
Assuming you had a variable called emails of type Array.
You can use a Join action as shown below.
Or you can just an expression as shown below.
join(variables('emails'), ';')
Either option would give you the following output.
bob@email.com;jill@email.com;andy@email.com
----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.