Hello,
I know this has been asked a few times, and I have followed many solutions. None worked perfectly for me but this comes closest.
This is my flow:

This is what I have in for the 'remove HTML tags ' expression:
replace(replace(replace(replace(replace(body('Create_HTML_table'),'<', ' '), 'p>', ' '),'<', ' '), '/p>', ' ') as this is what the table output is showing as: '<td><p>This is a test to see if the flow works.</p>\n</td></tr>'
;
This is what i get in my email

Could anyone explain why the '/' is left behind in my output, and how I could get rid of it. I thought it would all be viewed as a string esp when the 'p>'(p>) is replaced.
Thanks for your help.