Hello - I've been using this flow for quite some time now but when I am creating a new flow for different process using the same activities it didn't work.
When a new email arrives in a shared mailbox
Html to text - the content is the "Body" of the email.
Initialize variable - EnterKey
Compose - SplitBodyToText
split(body('Html_to_text'),variables('EnterKey'))
The problem here it is not splitting. it looks like a paragraph. I see "\n\n" these characters.
It seems like you need the compose action to split the body into arrays divided by \n\n.
If this the case, either the value of the variable should be \n\n or the split formula should be
split(body('Html_to_text),'\n\n')
Hope this helps.
Cheers!
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.