Skip to main content
I need a workflow formula to stop certain subjects within emails from creating an case via email to case.W

 

e.g - Emails containing 'Out of office' in the subject line - to not make a case on salesforce via email to case
10 respostas
  1. 17 de abr. de 2018, 10:43

    Try =

    AND(

    ISNEW(),

    ISPICKVAL(Origin, 'Email'),

    OR(

    CONTAINS(LOWER(Subject),'out of office'),

    CONTAINS(LOWER(Subject),'not a case')

    )

    )

     

     
0/9000