sabariprabu
sabariprabu

Reputation: 19

How to trigger Azure Logic App if an email is not received from a specific user?

I am using a Azure logic app connected with Outlook mail box. I need to trigger it when the e-mail comes to the mailbox other than a single specific from address.

Upvotes: 1

Views: 1057

Answers (1)

Hury Shen
Hury Shen

Reputation: 15724

For your requirement, just configure your trigger like below:

enter image description here

And do not add the parameter From

enter image description here

==============================Update===========================

For your requiements, there are two solutions.

1. Create a folder named "From hury shen"(out of "Inbox" folder) and create a rule in your outlook to filter all of the emails from Hury Shen to this new folder.

enter image description here

enter image description here

After that, I test it in my side, the logic app will not be triggered when a new email from hury shen arrives.

2. The other way is to add a "Condition" in your logic app. If From address equal to the specific email address, do nothing. If From address not equal to the specific email address, do what you want.

enter image description here

Upvotes: 0

Related Questions