Display member information
List of all the variables available in Liquid to display information about the loyalty member associated to a contact.
Example
Hello {{ loyalty.member.card_code }},
You are currently part of the loyalty program named {{ loyalty.member.program.name }}.
You've been part of it since {{ loyalty.member.program_join_date | date: '%Y-%m-%d %H:%M:%S' }}!
You current tier is {{ loyalty.member.tier.name }}, keep earning points and you'll be able to access another tier, with more privileges !
Click here to see what you can do with your points : {{ loyalty.custom_fields['custom_url'] }}
List of all available variables
Liquid variable | Description |
---|---|
| The cardcode of the loyalty member |
| The date on which the member joined the program |
| The date on which the member joined their current tier |
| The internal Splio ID of the member's program |
| The name of the member's program |
| The internal Splio ID of the member's current tier |
| The name of the member's current tier |
| The value of the member's custom field (You need to write the name of the custom field you want to access) |
Updated about 2 hours ago