Email a Link to the Current List Item from SPD Workflow
June 22, 2007
If you use the built-in activity of SharePoint Designer workflow "Send email", you can embed the URL of the current item ("Absolute Encoded URL"). However, this approach makes a URL of this kind
http://server/site/Lists/listname/1_.000
which is wrong.
The workaround is to use the SharePoint DispForm.aspx page and append an ID from the current item:
http://server/site/Lists/listname/DispForm.aspx?ID=[%ListItem:ID%]
(of course, being ListItem your own list name in SharePoint Designer)