Skip to main content
Amin Ahcene が「#Service Cloud」で質問

Hello everyone , 

I wish to have a case email subject line that is change automaticly depending of a custom picklist, Do you think that is possible ? 

#Service Cloud

 

#Service Cloud

1 件の回答
  1. 2021年6月23日 9:33

    You can create a formula field to generate your subject based on the picklist and use this formula field as a merge field in your email template subject.

     

    Formula field looks something like below

    CASE(TEXT(StageName),

    "New", "My New Opportunity",

    "Won", "Yay! Deal Won",

    "Lost", "Sorry! Deal Lost",

    "Porspect", "Deal In Progress",

    "Generic Subject")

0/9000