I am trying to use the first name token in my emails but have a custom script that eliminates the greeting when the first name of the record is not known. how would that custom script be written?
Solved! Go to Solution.
Remember to search first. There are tons of past posts on subjects like this.
In this case itβs as simple as:
#if( !$lead.FirstName.isEmpty() )
Hello ${lead.FirstName},
#end