I pulled some records from the database that look like the following, and they are assigned a variable named users
[#
<User id: 53433, first_name: "Hรฉctor", last_name: "Pinzon">,
<User id: 53434, first_name: "Hรฉctor 2", last_name: "Pinzon 2">,
]
Inside the fluid I want to loop through the loop
{% for user in users %}
{{ user.first_name }}
{% endfor %}
When I receive an email where it is supposed first_name, it displays
Liquid error: internal
Liquid error: internal
What am I doing wrong here? Why data is usersnot displayed?
source
share