Home > Mobile >  Azure Data Factory V2 - Sending Custom Email (without Logic Apps)
Azure Data Factory V2 - Sending Custom Email (without Logic Apps)

Time:03-08

I know that you can send email alerts for a Data Factory pipeline using Azure Monitoring AND that you can send custom emails using a Logic App and the http request trigger. Is there another simpler way to send an email to alert someone when a pipeline fails with the details of the error message included?

CodePudding user response:

Yes you can, but this method would be complex than creating a logic app or configuring default email alerts

  1. You can create a stored procedure in a SQL DB which would send an email
  2. Add the stored procedure in Failure output section of your ADF activity

Any reason for skipping traditional method of sending email from Azure? Maybe I can help

Thanks!

  • Related