Hi everyone,
I’ve got the following Issue:
I have an action flow that queries data and builds up an HTML view in the form of a table for all its entries.
In the end I trigger a Process Automation Skill to send an email via the “Email by Celonis” action.
My hyperlink is correctly tagged with:
<a href="https://url:port/sap/bc/gui/sap/its/webgui?~transaction=*transactionname%20table-field%3Dsalesorder%3BDYNP_OKCODE%3D%2F00%23" rel="noopener noreferrer" target="_blank"> salesorder</a>
but in the mail I only receieve the text “salesorder” without the hyperlink.
On the other hand when I use the URL as the hyperlink text it gets through with the mail:
<a href="https://url:port/sap/bc/gui/sap/its/webgui?~transaction=*transactionname%20table-field%3Dsalesorder%3BDYNP_OKCODE%3D%2F00%23" rel="noopener noreferrer" target="_blank"> https://url:port/sap/bc/gui/sap/its/webgui?~transaction=*transactionname%20table-field%3Dsalesorder%3BDYNP_OKCODE%3D%2F00%23</a>but only because my mail client recognized it as a hyperlink.
It seems like the <a> tags get removed before the mail is being sent out.
Does anyone know if it is intended behaviour or if there are other ways to solve this?