Add a link to access a file in a folder in the email body

I would like to send an email of which the body contains a link to a file inside a folder. I added a multiple assign activity because the file name is complicated (involving date variables).

Unfortunately, it is shown as plain text instead of a link that I can click to open. I tried using

<a href="FileName.ToString"></a>

but it does not work. I also tried select the “IsBodyHtml” option but it didn’t work either.

Please check the Xaml…Thank you very much.

Main.xaml (12.0 KB)

The problem has been solved. Check Is Body Html with the following code:

"<a href=" + FileName.ToString + ">" + FileName.ToString + "</a>"

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.