Gurjar_Randeep
Gurjar_Randeep

Reputation: 3

Send notification mail using Azure Logic Apps in C#

How we can send a automatically mail notification on a particular date using Azure Logic App?

Upvotes: 0

Views: 300

Answers (1)

SwethaKandikonda
SwethaKandikonda

Reputation: 8234

You can use Recurrence Trigger to send emails or notifications at a particular time. It gets triggered at the same time every day or the time which you have opted for. enter image description here

If you want it to be occurred only once then you can go to Settings -> Allow Concurrency Control and make Degree of Parallelism to 1. By doing this the logic app can just run with one instance.

enter image description here

Upvotes: 2

Related Questions