by dev | Apr 21, 2018 | Book
GroupConnect Data Strings The following strings apply only to GroupConnect messages and cannot be used in other Marketing Cloud applications. Some strings are specific to integration with the LINE messaging application. String Description Example Output...
by dev | Apr 21, 2018 | Book
Controlling Expression Evaluation Parentheses can be used to control the order of operation for evaluating expressions. Example 1 In this scenario, free shipping should only be offered to bronze or silver members who spend over $500. %%[ var @statusTier, @amount,...
by dev | Apr 21, 2018 | Book
Website Data Strings The following strings apply only to landing pages, microsites and CloudPages and cannot be used in other Marketing Cloud applications. String Description Example Output microsite_base_url[default]ID[/default] URL to a microsite landing page....
by dev | Apr 21, 2018 | Book
Not Operator A not operator can be used to reverse the logic of a Boolean evaluation. Example 1 %%[ var @statusTier, @amount, @freeShipping set @statusTier = "Gold" set @amount = 125 if @statusTier == "Gold" and not @amount > 100 then set @freeShipping = true endif...
by dev | Apr 21, 2018 | Book
Email Analytics Strings String Description Example Output linkname The value entered in the alias link attribute. If no value is specified, it contains the complete URL. CTA _ImpressionRegionID Returns the ID of the Impression Region. Contains 0 if there are no active...
by dev | Apr 21, 2018 | Book
Process Loops A process loop enables code or content within a block to be repeated until an ending index expression is reached. There are seven required parts in a process loop: an opening for statement a loop counter, defined as a variable a starting index expression...