Reputation: 100
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
Please help me to implement same, Thanks in advance!
Upvotes: 0
Views: 1926
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
:
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:
Upvotes: 1