Forum Discussion
Ian Moran
Dec 12, 2016Steel Contributor
Insert edit list item URL into email body
Is it possible to insert a link in the email body to edit the current SharePoint list item in a flow email ?
- Dec 15, 2016
Hi 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>
Kerem Yuceturk
Microsoft
Hi 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>
Krista Bradley
Mar 27, 2017Microsoft
YES! Thank you so much for posting this. It works beautifully.