Hi,
I have been working with an “outlook new email arrives trigger” with a condition does not contain on subject. If condition is true send out “Reply to email V3”.
the problem is i want to stop sending out emails for the same email when they reply back to the shared mailbox.
how can i avoid that?
Thanks for this it worked
It won't stop emails coming, it means once there are emails with "Re" in subject arriving inbox, the flow will not be triggered.
Or you can try this one to avoid the trigger miss emails whose subject contains words start with Re.
@Anonymous(contains(triggerOutputs()?['body/subject'],'Re:'))
Community Support Team _ Wenjuan Zou
If this post helps, then please consider Accept it as the solution to help the other members find it.
Does this stop emails coming as “RE” if that’s the case this won’t help.
Hi @Zamil ,
Set trigger condition to this function:
@not(contains(triggerOutputs()?['body/subject'],'Re'))
Community Support Team _ Wenjuan Zou
If this post helps, then please consider Accept it as the solution to help the other members find it.