
Hi all,
I'm working through this tutorial: https://flow.microsoft.com/en-us/blog/automate-mass-communications/
Have followed along with my own test sharepoint site word for word but am running to an error:
This appears to be driving the error:
@{concat(,uriComponentToString('%0A'),uriComponentToString('%0A'),triggerBody()['text'])}Any ideas what's going on?
Hi @Anonymous,
I have made a test on my side and the issue is confirmed on my side.
Please modify the expression to below:
@{concat(uriComponentToString('%0A'),uriComponentToString('%0A'),triggerBody()['text'])}
And the flow would run successfuuly as below:
Best regards,
Alice