by dev | Apr 21, 2018 | Book
SetValue This function sets the value of an AMPscript variable inside a block. Arguments SetValue(1,2) Ordinal Type Required Description 1 String True AMPscript variable name 2 String True AMPscript variable value NOTE: Prefixing the variable name with an @ character...
by dev | Apr 21, 2018 | Book
Using a SSJS Try/Catch to Trap AMPscript Errors For those elusive AMPscript runtime errors, you can get some additional details of the error by trapping exceptions with a SSJS try/catch block. Username or Email Password Remember me Lost your password? Not a...
by dev | Apr 21, 2018 | Book
IIf This in-line IF function returns the value of the second argument if the value for the first argument evaluates as true. Arguments IIf(1,2,3) Ordinal Type Required Description 1 String True Conditional expression that returns a true or false 2 String True Value to...
by dev | Apr 21, 2018 | Book
Overview Content syndication enables content from external, publicly accessible HTTP sources to be included in emails and landing pages. Applications include embedding the following content in emails and landing pages: news feeds dynamically generated content (for...
by dev | Apr 21, 2018 | Book
Modularization Code reuse is a universal programming best practice. Projects that include highly personalized messages that leverage data from multiple sources are good candidates for breaking out components into reusable blocks.
by dev | Apr 21, 2018 | Book
IsEmailAddress This function confirms whether or not a value matches a valid email syntax. The function returns true if the syntax is valid or false if it’s not. Argument IsEmailAddress(1) Ordinal Type Required Description 1 String True Email address to validate...