Last active
August 1, 2018 17:12
-
-
Save jasonayre/f305bf51964cf1c411a05bc45298976e to your computer and use it in GitHub Desktop.
reaction email liquid example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// readable version | |
{% if message.participant.prefix contains 'Dr' %} | |
Hello {{ message.participant.prefix}} {{message.participant.last_name}} | |
{% else %} | |
Hello {{message.participant.first_name}} | |
{% endif %} | |
// with or statement | |
{% if message.participant.prefix contains 'Dr' or message.participant.prefix.contains 'Dr.' %} | |
Hello {{ message.participant.prefix}} {{message.participant.last_name}} | |
{% else %} | |
Hello {{message.participant.first_name}} | |
{% endif %} | |
// one liner | |
{% if message.participant.prefix contains 'Dr' %}Hello {{ message.participant.prefix}} {{message.participant.last_name}}{% else %}Hello {{message.participant.first_name}}{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment