Conditional messaging logic
Tags allow you to include programming logic in your messaging campaigns. Tags can be used for executing conditional statements as well as for advanced use cases, like assigning variables or iterating through a block of code.
This page covers how tags can and should be used, such as how to account for null, nil, and blank attribute values, and how to reference custom attributes.
Formatting tags
A tag must be wrapped in {% %}
.
To make your life a bit easier, Braze has included color-formatting that will activate in green and purple if you’ve correctly formatted your Liquid syntax. Green formatting can help identify tags, while purple formatting highlights areas that contain personalization.
If you’re having a hard time using conditional messaging, try writing out the conditional syntax before you insert your custom attributes and other Liquid elements.
For example, add the following into the message field first:
1
2
3
{% if X >0 %}
{% else %}
{% endif %}
Be sure it highlights in green, then replace the X
with your chosen Liquid or Connected Content using the blue +
in the message field corner, and the 0
with your desired value.
Then, add your message variations as you need them between the else
conditionals:
1
2
3
4
5
{% if {{custom_attribute.${total_spend}}} >0 %}
Thanks for purchasing! Here's another 10% off!
{% else %}
Buy now! Would 5% off convince you?
{% endif %}
Conditional logic
You can include many types of intelligent logic within messages, such as a conditional statement. See the following example which uses conditionals to internationalize a campaign:
1
2
3
4
5
6
7
8
9
{% if ${language} == 'en' %}
This is a message in English from Braze!
{% elsif ${language} == 'es' %}
Este es un mensaje en español de Braze !
{% elsif ${language} == 'zh' %}
这是一条来自Braze的中文消息。
{% else %}
This is a message from Braze! This is going to go to anyone who did not match the other specified languages!
{% endif %}
Step by step example
In this example, we use tags with “if”, “elsif” and “else” statements to deliver internationalized content.
1
2
{% if ${language} == 'en' %}
This is a message in English from Braze!
If the user’s language is English, the first condition is met and the user will receive a message in English.
1
2
3
4
{% elsif ${language} == 'es' %}
Este es un mensaje en español de Braze !
{% elsif ${language} == 'zh' %}
这是一条来自Braze的中文消息。
You can specify as many conditional statements as you’d like. Subsequent conditions will be checked if the previous conditions are not met. In this example, if a user’s device is not set to English this code will check to see if the user’s device is set to Spanish or Chinese. If the user’s device meets one of these conditions, the user will receive a message in the relevant language.
1
2
{% else %}
This is a message from Braze! This is going to go to anyone who didn't match the other specified languages!
You have the option to include an {% else %}
statement in your conditional logic. If none of the conditions that you set are met, the {% else %}
statement specifies the message that should send. In this case, we default to English if a user’s language is not English, Spanish, or Chinese.
1
{% endif %}
The {% endif %}
tag signals that you’ve finished your conditional logic. You must include the {% endif %}
tag in any message with conditional logic. If you don’t include an {% endif %}
tag in your conditional logic, you’ll get an error as Braze will be unable to parse your message.
Accounting for null, nil, and blank attribute values
Conditional logic is a useful way to account for attribute values that aren’t set in user profiles.
Null and nil attribute values
A null or nil value occurs when the value of a custom attribute hasn’t been set. For example, a user who hasn’t yet set their first name won’t have a first name logged in Braze.
In some circumstances, you may wish to send a completely different message to users who have a first name set and users who don’t have a first name set.
The following tag allows you to specify a message for users with a null “first name” attribute:
1
2
3
{% if ${first_name} == null %}
....
{% endif %}
1
2
3
4
5
{% if ${first_name} == null %}
We're having a sale! Hurry up and get 10% off all items today only!
{% else %}
Hey {{${first_name} | default: 'there'}}, we're having a sale! Hurry up and get 10% off all items today only!
{% endif %}
Note that a null attribute value isn’t strictly associated with a value type (for example, a “null” string is the same as a “null” array), so in the example above, the null attribute value is referencing an unset first name, which would be a string.
Blank attribute values
A blank value occurs when the attribute on a user profile isn’t set, is set with a whitespace string (
), or is set as false
. Blank values should be checked before other variables to avoid a Liquid processing error.
The following tag allows you to specify a message for users that have a blank “first name” attribute.
1
2
3
{% if ${first_name} == blank %}
....
{% endif %}
Referencing custom attributes
After you have created custom attributes, you can reference these custom attributes in your Liquid messaging.
When using conditional logic, you’ll need to know the custom attribute’s data type to ensure you’re using the correct syntax. From the Custom Attributes page in the dashboard, look for the data type associated with your custom attribute, then reference the following examples listed for each data type.
Strings and arrays require straight apostrophes around them, while booleans and integers will never have apostrophes.
Boolean
Booleans are binary values, and can be set to either true
or false
, such as registration_complete: true
. Boolean values don’t have apostrophes around them.
1
{% if {{custom_attribute.${registration_complete}}} == true %}
Number
Numbers are numeric values, which can be integers or floats. For example, a user may have shoe_size: 10
or levels_completed: 287
. Number values don’t have apostrophes around them.
1
{% if {{custom_attribute.${shoe_size}}} == 10 %}
You can also use other basic operators such as less than (<) or greater than (>) for integers:
1
{% if {{custom_attribute.${flyer_miles}}} >= 500 %}
String
A string is made up of alphanumeric characters and stores a piece of data about your user. For example, you may have favorite_color: red
or phone_number: 3025981329
. String values must have apostrophes around them.
1
{% if {{custom_attribute.${favorite_color}}} == 'blue' %}
For strings, you can use both “==” or “contains” in your Liquid.
Array
An array is a list of information about your user. For example, a user may have last_viewed_shows: stranger things, planet earth, westworld
. Array values must have apostrophes around them.
1
{% if {{custom_attribute.${last_viewed_shows}}} contains 'homeland' %}
For arrays, you must use “contains” and can’t use “==”.
Time
A time stamp of when an event took place. Time values must have a math filter on them to be used in conditional logic.
1
{% assign expire = {{custom_attribute.${subscription_end_date}}} | plus: 0 %}