
I want to apply an action on each email NOT containing specific text.
In p-code, it's something like:
for each email in <Get Emails V3> :
if "From:" Not(EndsWith('xyz')) :
create contact ( email=sender-email, category="abc" )
for each email in <Get Emails V3> :
if "From:" Not(EndsWith('xyz')) :
create contact ( email=sender-email, category="abc" )
I can't find out how to write the expression for Search Query field of Get Emails v3.
I'm new to Flow.
Although i'm an excel power user, I can't find how to phrase the condition in Flow.
I couldn't (yet) find the relevant documentation / examples.
Thank you
Hi @abunamur,
I think this would be possible by using a condition and the does not end with operator. Below is an example of how you could use this with the from field.