DwPageManagerEmail

Version: - string  

Summary

Returns the E-mail of the page manager of the current page.

Settings

The value is based on the E-mail input field in the User details section for the user.

(Users > Group/User > User > User details panel > E-mail)

Examples

Outputting the template tag

@GetString("DwPageManagerEmail")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("DwPageManagerEmail"); }

Outputting the template tag

<!--@DwPageManagerEmail-->

Check if string has a value

<!--@If Defined(@DwPageManagerEmail)--> Let's output this tag here: <strong><!--@DwPageManagerEmail--></strong> <!--@EndIf(@DwPageManagerEmail)-->