如何使用ExactTarget个性化设置条件格式?如果名字存在,我只想显示标点符号。
例如,如果名称存在,主题为NAME! Rest of Subject.,但如果名称字段为空,则为Rest of Subject.
如果我的%% first_name %%! Rest of Subject.值为空,则%% first_name %%! Rest of Subject.将返回! Rest of Subject.。
发布于 2015-04-01 20:01:33
%%[
If Not Empty([first_name]) Or [first_name] != "" Then
Set @salutation = Concat(ProperCase([first_name]),'! ')
Else
Set @salutation = ""
EndIf
]%%%%=v(@问候语)=其余部分的%。
备注:
将此内容放在电子邮件中,并在subject行输入字段中插入:%%=v(@问候语)=% Subject.
https://stackoverflow.com/questions/29399160
复制相似问题