Adding hyperlinks (within the dataset) in send mail when dataset is included

Hi,

I am using the option to include a dataset within the send mail action as a HTML table. What I want to be able to do, is to include hyperlinks within this table.

So I am using a formula to create a row value like <a href="www.w3schools.com">TEST</a>.
This is calculated correctly.

I hoped it would be parsed like the example below (I am using a markdown table):

MyRef
TEST1
TEST2
TEST3

But unfortunately, the parser is excaping the included html code, so the actual HTML code is being displayed within my email, like this:

MyRef
<a href="www.microsoft.com">TEST1</a>
<a href="www.google.com">TEST2</a>
<a href="www.easymorph.com">TEST3</a>

Hopefully there is a workaround/solution for this.

Kr
Edward

Hi Edward,

If you need a customized HTML table, it has to be generated. See this topic that has an example of generating an HTML table and sending it by email: List Data in the Body of an Email. You can modify it to insert hyperlinks in cells.

Hi,
Thank you very much, just what I was looking for :slight_smile:
Kr
Edward