Email

Version: - string  

Summary

Returns the email address that the visitor has submitted with the comment.

Settings

The value is based on the Email field for the comment.

(Frontend comments form or Modules tab > News > Category > News > Content > Comments > Comment > Email)

Examples

Outputting the template tag

@GetString("Email")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Email-->

Check if string has a value

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