If Else Subject Line
Thu May 23 2024 14:57:07 GMT+0000 (Coordinated Universal Time)
Saved by
@kathrynhefner
%%[
set @language = System_Language__c
Set @FRvalue= "fr_"
/* Does it match; ; if no match, output of IndexOf(1,2) will be "0" */
if @language == "French" OR IndexOf(@language,@FRvalue) > 0 then
Set @subjectline = "Vous êtes sur la liste pour recevoir les dernières nouvelles concernant Cat® Vantage"
else
Set @subjectline = "You're on the list for the latest news for Cat® Vantage Rewards!"
endif
]%%
content_copyCOPY
Comments