Email template notification format

ant
New Contributor
New Contributor

Hi

Have a use case to create a notification template where we can capture 'UPDATEUSER ${user?.updateuser}' in this return format: [userName] [firstName] [lastName].

Need idea on how to achieve that? It has been noticed that '${user?.updateuser}' only returns the username

 

 

 

 

1 REPLY 1

naveenss
All-Star
All-Star

Hi @ant ,

Please try below

${user?.updateuser?.username} ${user?.updateuser?.firstname} ${user?.updateuser?.lastname}

Regards,
Naveen Sakleshpur
If this reply answered your question, please click the Accept As Solution button to help future users who may have a similar problem.