我正在尝试编写一个AMPscript,它可以执行以下操作:
如果名字存在,请说"约翰,你的">
如果没有名字,请说"你的">
我试过这个,但不起作用:
%%=iif(空(@firstName(,"Your",concat(propercase(@firstName,"Your"((=%%
我知道这是一个简单的答案,我们将不胜感激!
%%[
set @Firstname = Propercase[Fristname]
If empty(@Firstname) then
set @Firstname = "Your"
endif
]%%
然后,您可以使用@Firstname
来显示名称,例如:%%=v(@Firstname)=%%
是"您的">