
e.g - Emails containing 'Out of office' in the subject line - to not make a case on salesforce via email to case
10 respostas
Try =
AND(
ISNEW(),
ISPICKVAL(Origin, 'Email'),
OR(
CONTAINS(LOWER(Subject),'out of office'),
CONTAINS(LOWER(Subject),'not a case')
)
)