I need the case status to auto switch to "in progress" when there are no unreplied emails that are not from our Address in a case.
I tried to find the count of the emails with that criteria, in formula sandbox with:
but I get "error 500"
No primary filter 'fromAddress'
any ideas?
I tried to find the count of the emails with that criteria, in formula sandbox with:
PHP Code:
$noOfEmails = record\count('Email', 'parentId=', $caseId, 'fromAddress=' 'test@email.com');
output\printLine($noOfEmails)
No primary filter 'fromAddress'
any ideas?
Comment