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.
1
votes
1 Answers
0
votes
For your requirement, just configure your trigger like below:
And do not add the parameter From
==============================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.
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.