Hi,
I have sharepoint list the column is multiline text, but in email the line break not show
ex:
aaa
bb
the result:
aaa bb
i have try replace(item()?['Message'],outputs('Compose_NewLine'),'<br>') but its not work
the result:
aaa<br>bb
this is my flow
Thanks.
It worked! Thank you.
Hi @nrd10 ,
Please check this test:
My Email Inbox:
My SharePoint List:
My Flow:
Because the '<' and '>' symbols were escaped into '>' and '<' in the create html table step, I will replace these two escapes with '<' and '>' in the subsequent steps.
This will achieve the effect of line breaks in the email body.
replace(replace(body('Create_HTML_table'),'<','<'),'>','>')
Best Regards,
Sunshine Gu