Hello, I was wondering if it is possible to use other variables from the user object in an email template. For example: Instead of “Hello {identity_value}”, I want to use “Hello {user_first_name}”. Is this possible?
Hello @David_Hasler!
You can utilize {identity_name}
as the User’s identity parameter name.
Should you need to access a column’s value, like a column from the Users
table, use this smart text format: {Users.columnName}
.
For example, to include a user’s name from a name
column in the Users
table into an email template, you’d use {Users.name}
, which automatically fills in the user’s name.
You can find more detailed information here.
Regards,
Alexander