Dec 12 2016 06:38 AM
Is it possible to insert a link in the email body to edit the current SharePoint list item in a flow email ?
Dec 14 2016 05:03 PM - edited Dec 14 2016 05:05 PM
SolutionHi Ian Moran! There is no direct way at the moment, but you could craft your own link by using the ItemId. Make sure the mail is using HTML and then add something like this:
<a href="https://contoso.sharepoint.com/teams/marketing/Lists/IssueTracker/EditForm.aspx?ID=<<<FLOW ITEMID TOKEN>>>">Edit item</a>
Mar 27 2017 11:32 AM
YES! Thank you so much for posting this. It works beautifully.
Sep 10 2018 12:43 AM
This works if the EditForm is a SharePoint integration form. Is this as well possible if the App has been created from Data (which is as well a SharePoint list, but not integrated with customize forms)?
Jan 03 2019 12:57 PM - edited Jan 03 2019 12:58 PM
How can we fetch the following:
<<<FLOW ITEMID TOKEN>>>">
Can you please provide more info on this part? I mean is this something that is going to behave Statically or dynamically? Also how can I fetch the Flow itemid token, Thanks for the help.
Jan 08 2019 09:19 AM
It's the ID of the associated list item in the SharePoint list. You fetch it by adding dynamic content, ID, from the step in the flow that deals with that item.
Jan 08 2019 10:52 AM
Dec 14 2016 05:03 PM - edited Dec 14 2016 05:05 PM
SolutionHi Ian Moran! There is no direct way at the moment, but you could craft your own link by using the ItemId. Make sure the mail is using HTML and then add something like this:
<a href="https://contoso.sharepoint.com/teams/marketing/Lists/IssueTracker/EditForm.aspx?ID=<<<FLOW ITEMID TOKEN>>>">Edit item</a>