I am half way building a "service desk" type of list on Sharepoint with Outlook being the main correspondence method. I have created a flow that currently:
1. Reads an email coming into a shared inbox and creates a new sharepoint list item, and also attached the email to the list item and even sends an email back to the sender
2. I now want to work out a flow that monitors the shared inbox and identifies a reply and then updates the existing sharepoint list item it relates to. Im not sure if it should be looking for the sharepoint ID in the subject, or another method. Should I create a seperate flow or modify the original that creates the new items?
Can any please suggest best approach? Thanks
Solved! Go to Solution.
You need to develop a new flow that runs on the below trigger
And you need to extract the subject from the email and use it in Get Items Filter Query to get your sharepoint list item to update it
Filter Query
endswith(title,expressionBelow)
Expression:
where the expression used assumes the reply is in the format RE: Subject
Hope this gives you an idea!
You need to develop a new flow that runs on the below trigger
And you need to extract the subject from the email and use it in Get Items Filter Query to get your sharepoint list item to update it
Filter Query
endswith(title,expressionBelow)
Expression:
where the expression used assumes the reply is in the format RE: Subject
Hope this gives you an idea!
Thank you for sharing your issue. In addition to the way @Mira_Ghaly provided, I recommend to use a unique tracking ID in the subject for each thread. You can easily identify the thread and SharePoint item by this.
Hi @tyringmybest , @Mira_Ghaly
You solved your problem, I have exactly the same flow.
Can you please show me the flow steps and where did you used the condition? because right now it's saving all the emails in the list and even creating a new record of a email which is already there, I am unable to put the condition can you help me?
Hello Team!
I have created the below flow based on the above but for some reason cannot get it to update the existing item it just creates a new one everyone someone replies?