DwPageEditorEmail

Version: - string  

Summary

Returns the email address for the editor.

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

@GetString("DwPageEditorEmail")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@DwPageEditorEmail-->

Check if string has a value

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