Placeholder1[2,3]

Version: - string  

Summary

Returns value of Placeholder1[2,3] for current email notification. 

Settings

The value is related to data of current email notification within PIM-Email notofications list.

Examples

Outputting the template tag

@GetString("Placeholder1[2,3]")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Placeholder1[2,3]"); }

Outputting the template tag

<!--@Placeholder1[2,3]-->

Check if string has a value

<!--@If Defined(@Placeholder1[2,3])--> Let's output this tag here: <strong><!--@Placeholder1[2,3]--></strong> <!--@EndIf(@Placeholder1[2,3])-->