Home > other >  Sending email alert
Sending email alert

Time:01-22

After migrating data to Azure Sql database need to send email alert which I did not find in azure data factory

In azure logicapps unable to see Azure sql database connector like below image enter image description here

CodePudding user response:

After migrating data to Azure Sql database need to send email alert which I did not find in azure data factory

AFAIK sending email alert is not possible through azure data factory, but you can achieve this using Azure logic Apps by following this MS Document

In logic App Create When a http request is received trigger by taking your adf Json schema as shown below. enter image description here

Then In Outlook 365 connector you can choose send email action and you can retrieve your adf details like data factory name, pipeline name and message.
enter image description here

Then the email gets triggered and the recipient get email alert . enter image description here enter image description here

  • Related