▪️Liquid Email
Use of fallback
Hello, {{ state.user_first_name | default: state.core_username }}!Use of conditions & variables
{% assign last_deposit_date = state.acc_last_deposit_date | date: "%s" %}
{% assign current_date = "now" | date: "%s" %}
{% assign time_difference = current_date | minus: last_deposit_date %}
{% assign days_since_deposit = time_difference | divided_by: 86400 %}
Happy {{ 'now' | date: "%A" }}! We miss you! You haven't done a deposit for
{% if days_since_deposit <= 7 %} {{ days_since_deposit }} days
{% elsif days_since_deposit <= 31 %} more than a week
{% else %} more than a month
{% endif %}
and your balance is
{% if state.acc_real_balance < 10 %}
really low at {{state.acc_real_balance | plus: 0}}.
{% else %}
{{state.acc_real_balance | plus: 0}}.
{% endif %}.
We have an exciting offer for you! If you deposit in the next {{'now' | date: "%H" | minus: 24 | abs}} hours and {{'now' | date: "%M" | minus: 59 | abs}} minutes , we will accumulate an additional 50% bonus to your deposited amount.Set a specific timezone
Format Date/Time
Set a specific translation
Reminders for missions, jackpots etc.
URL Encoding and Decoding
Many more...
Last updated
Was this helpful?