LeadsMail:PagesVisited.PageName

Version: - string  

Summary

Returns page name visited by the lead.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("LeadsMail:PagesVisited.PageName")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("LeadsMail:PagesVisited.PageName"); }

Outputting the template tag

<!--@LeadsMail:PagesVisited.PageName-->

Check if string has a value

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