Hi Mike
Have you tried creating the HTML string in the body of the message?
The tooltip on the body field says;
Subject and Body
This value can be a plain text or HTML. See help tab for instructions on how to use MUI.
You can use the current value from a field in the message by using the FieldInternalName in curly braces like this:
{NameOfField}
ItemLink
Use this in the Body to insert a link to the current items DispForm or EditForm:
{viewitemlink}
{edititemlink}
You can wrap it in an anchor tag like this:
<a href="{viewitemlink}">Link to item</a>
So try;
<a href="{viewitemlink}">{Title}</a>
Adam
-
This reply was modified 6 years, 1 month ago by AdamP.