Hello there,
I am using Feedback trigger at the moment and I am very satisfied with the functionality. The condition is the following:
doc.status=="Closed"
This sends emails even to noreply addresses. I want to change the condition as follows:
doc.status=="Closed"
"noreply" not in doc.raised_by
When I try to save that, it keeps telling me:
The condition ‘doc.status==“Closed” (“noreply” not in doc.raised_by)’ is invalid
Any ideas?
EDIT: This will work:
doc.status=="Closed" and "noreply" not in doc.raised_by