Hello,
I have a SharePoint list which contains multiple multiline columns that's plain text. I have a Power Automate workflow that triggers when a SharePoint item is created or modified. Also, in the workflow, I have a Send an email (V2) action. In the Send an email (V2) action, I've switched the content editor to html by clicking </> and added columns from the SharePoint list as dynamic content.
In the Send an email (V2) action, I've added replace(<your input>, '\n','<br>'). I've also tried initializing a variable, adding '\n' as the value and then adding in the Send an email (V2) action, replace(<your input>,variables('NewLine'),'<br>').
In the SharePoint list item, I add content to a multiline column which contains line breaks. However, when the workflow is triggered and sends an email, the column's contents are in one line and doesn't contain line breaks as intended.
Is there a way to fix this?