3

Does anyone know if it is possible to execute conditional statements in Exacttarget?

For example, if x variable === y, render image 1.

if x variable === z, render image 2.

This is fairly out there and the docs doesn't cover it, so I'm just crossing my fingers here

4

2 回答 2

2

它是,它被称为 Ampscript。您可以使用它来完成所有基本规则和查找。文档链接

%%[IF expression1 <comparison operator> expression2 THEN]%%
    [wrapped script or email content]
%%[ELSEIF expression1 <comparison operator> expression3 THEN]%%
    [wrapped script or email content]
%%[ELSE]%%
    [wrapped script or email content]
%%[ENDIF]%%
于 2016-02-08T13:41:08.227 回答
2

我在 Stackoverflow 上发现了一个相关问题:

ExactTarget 个性化主题行中的条件格式

这导致我找到:https ://help.exacttarget.com/es-US/documentation/guide_template_language/built_in_block_helpers/

问题已回答!:)

于 2016-01-29T00:53:56.497 回答