The logic app is an Azure service that can be used to schedule, automate and orchestrate tasks, business processes, and workflows. We can use the Azure logic app to automate a common business process.
For example, we can use the logic app to send email notifications to different users when an event happens in various applications, services, and systems, etc.
Workflow
We can use the Workflows to automate the process. A workflow contains triggers and actions and a trigger is followed by multiple actions.
Trigger
The Azure Logic Apps providing a rich set of triggers, We can use multiple triggers for triggering a workflow. Currently, Logic App designer view is supporting only one trigger but we can use multiple triggers using code view.
Example: Http request, Recurrence, service bus message etc.
Actions
We can add multiple actions followed by a trigger and we can pass the output of an action to another action as input.
Example: Send mail, Execute a stored procedure, send SMS.
We can add multiple actions followed by a trigger and we can pass the output of an action to another action as input.
Example: Send mail, Execute a stored procedure, send SMS.
Send Email using Logic Apps