Returns the e-mail of the user.
The value is based on the E-mail input field for a user.
(User Management > User > User tab > Personal panel > E-mail)
Outputting the template tag
@GetString("UserManagement:User.Email")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("UserManagement:User.Email"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("UserManagement:User.Email");
}
Outputting the template tag
<!--@UserManagement:User.Email-->
Check if string has a value
<!--@If Defined(@UserManagement:User.Email)-->