Global:Extranet.Email
Version: - globalvalueSummary
Returns the e-mail of the xtranet user.
Settings
The value is based on the E-mail input field for a user.
(User Management > User > User tab > Personal panel > E-mail)
Examples
Outputting the template tag
@GetGlobalValue("Global:Extranet.Email")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetGlobalValue("Global:Extranet.Email"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetGlobalValue("Global:Extranet.Email");
}
Outputting the template tag
<!--@Global:Extranet.Email-->
Check if globalvalue has a value
<!--@If Defined(@Global:Extranet.Email)-->
Let's output this tag here: <strong><!--@Global:Extranet.Email--></strong>
<!--@EndIf(@Global:Extranet.Email)-->