Ecom:CustomerCenter.List.SendPage.SendTo.Input

Version: - string  

Summary

Returns an input field for the subject of the email to the recipient of the list.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:CustomerCenter.List.SendPage.SendTo.Input")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:CustomerCenter.List.SendPage.SendTo.Input"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:CustomerCenter.List.SendPage.SendTo.Input"); }

Outputting the template tag

<!--@Ecom:CustomerCenter.List.SendPage.SendTo.Input-->

Check if string has a value

<!--@If Defined(@Ecom:CustomerCenter.List.SendPage.SendTo.Input)--> Let's output this tag here: <strong><!--@Ecom:CustomerCenter.List.SendPage.SendTo.Input--></strong> <!--@EndIf(@Ecom:CustomerCenter.List.SendPage.SendTo.Input)-->