Forum:Global.User.Email

Version: - string  

Summary

Returns E-mail of the currently logged in Extranet user.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Forum:Global.User.Email")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Forum:Global.User.Email"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Forum:Global.User.Email"); }

Outputting the template tag

<!--@Forum:Global.User.Email-->

Check if string has a value

<!--@If Defined(@Forum:Global.User.Email)--> Let's output this tag here: <strong><!--@Forum:Global.User.Email--></strong> <!--@EndIf(@Forum:Global.User.Email)-->