I would like to send a reminder email to each work item owner from a devops query on a weekly basis. I have a recurrence that calls a query, then an apply to each with a send email 2 inside. Testing the flow manually correctly calls the query and returns the results, however, I cannot correctly extract the Assigned To and place it in the To field. First, the fields from the current item do not appear in the dynamic content picker for the To field. Second, the Assigned To field does not appear in the dynamic content picker for other slots like the subject or body. Other fields like Title do appear in the dynamic contect picker. I placed this in the email Subject and it populates correctly in the test.
Any help would be appreciated.
Update 1/8/2020 - What worked for me is this. I needed to use Apply_to_each instead of For_each.
"body": {
"Body": "@{items('For_each')}",
"Subject": "@items('For_each')?['System.Title']",
"To": "@{first(split(last(split(items('For_each')?['System.AssignedTo'],'<')),'>'))}"
}
It doesn't give you the email in JSON. Its something like "John Doe <johndoe@contoso.com>". That magic up above gets out the email address.
Darn, you wouldn't remember that particular Logic App? Does anyone know how to parse this using JSON?
It's been a while, but I think I bumped this code up to a Logic App then I could get a hold of what I needed to. Sorry I cant be more clear.
What functions did you use to pull out the emails?
I am having similar issue when using a custom identity field in DevOps to send an item via email to update stake holders.
My flow attempts to send to "User Name <Username@domain.com>" instead of "username@domain.com" and fails.
Please help.
I'm sorry, I can't figure out how to upload a screenshot.
I got this working as a Logic App. There are two blocking issues. First, for some reason I do not understand the DevOps connector in Flow does not pass along the "Assigned To" field. All of the others are there, but AssignedTo is needed to figure out who to send the mail to. Second the DevOps connector does not pass the value of this field as an email address. It passes it as a contact e.g. "John Doe <john@doe.com>" and I needed to use several functions to pull out just the email address "john@doe.com". Either DevOps should pass the email, or the email activity should accept the contact format like Outlook does.
Thank you very much!
Dave
Hi @DLan,
Would you please share a screenshot of the configuration of your flow so we would try to provide a proper workaround for you?
Best regrads,
Alice
WarrenBelz
146,788
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
66,093
Most Valuable Professional