creating logic app driven by http trigger and send email
We can easily create a logic app that run "When http request is triggered" and then send out email. The logic app looks something like this :- We will use the following json to define out schema {"receipient": "test@example.com","title": "Hello","message": "This is a test"} And this us what our request body JSON schema would look like Then we will create "Send an email (v2)". In our send email parameter setup, it looks something like this. When our http triggers completes, it returns a json but it is also a STRING. And we need to be able to convert it into a json otherwise you will get the following errors :- Unable to process template language expressions in action 'Send_an_email_(V2)' inputs at line '0' and column '0': 'The template language expression 'triggerBody()?['receipient']' cannot be evaluated because property 'receipient' cannot be selected....