By: Praveen Srinivasan user 25 Feb 2018 at 11:02 p.m. CST

2 Responses
Praveen Srinivasan gravatar
I am having a small customization. Is there any way to show a user's email ID in top menu of GLUU's profile page. Currently GLUU has below code to show user name. ``` #{gluufn:getPersonDisplayName(identity.user)} ``` Similary I need to show user's email ID. Is there any possible way to show user's email ID?

By Thomas Gasmyr Mougang staff 26 Feb 2018 at 2:13 a.m. CST

Thomas Gasmyr Mougang gravatar
Hi **Praveen**, > Is there any possible way to show user's email ID? **Yes** > How? ``` <p style="font-size: 14px; color: yellow;"> <br/> #{identity.user.mail} </p> ``` > What the end result will look like? **Like** [**this**](https://pasteboard.co/H9oHU4e.png) Thanks!

By Praveen Srinivasan user 26 Feb 2018 at 2:27 a.m. CST

Praveen Srinivasan gravatar
Works well, thanks :)