aamirmalik127
aamirmalik127

Reputation: 100

How to use multiple subject filter in Azur logic app for office 365

I have been Implementing a logic app which trigger when a email come from specific email id then it perform some task.

I have inserted a subject line filer (I want to select multiple subject filter) but comma',' its not working here to separate different subject line.

Example I want to trigger logic app once email come from [email protected] and subject line should be REST OR BEST or FAKE apart from these any subject line logic app should not trigger.

I tried below method but its not working

enter image description here

Please help me to implement same, Thanks in advance!

Upvotes: 0

Views: 1926

Answers (1)

Frank Borzage
Frank Borzage

Reputation: 6796

As far as I know, we cannot add multiple filter conditions in the same Subject Filter line.

I think its principle should be to determine whether the Subject contains the string you specify. For example, the method you mentioned should be to determine whether the email Subject contains the string REST,BEST,FAKE.

The solution I can think of is to create multiple Azure Logic App, and then specify Subject Filter as REST, BEST and FAKE respectively.

========================update======================

You can click Add new parameter and select Include Attachments, then set it to Yes:

enter image description here

You can select Attachment Size in the dynamic content, and then use the condition statements to compare whether the size meets the set value. Then send the mail in True branch:

enter image description here

Upvotes: 1

Related Questions