Good day
An invitation and verification email were sent with [[ user.name ]] in the template but it did not include include name of the user.
Additionally, I put [% debug %] in the template that sees user objects and objects that only include email addresses. Would it be possible for you guys to tell me why the user object doesn’t include any other information? and help me in that case?
If you are using Liquid syntax in your email template, the correct reference for the user’s name would be {{ user.name }} with curly brackets instead of square brackets. (Reference: Use Liquid Syntax in Email Templates)
Similarly for debugging, it should be {% debug %}.
Here is a list of callable variables in an email template.
Could you please make these changes and let me know how it goes?
The question was written incorrectly, I previously used this syntax {{ user.name }}.
Further, I placed {%debug%} in the email template, and the user object does not contain a name.