LeadsMail:PotentialLeads.TotalVisits

Version: - integer  

Summary

Returns total visits of the potential lead.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("LeadsMail:PotentialLeads.TotalVisits")

Check if tag has a value

@if(!int.IsNullOrWhiteSpace(GetInteger("LeadsMail:PotentialLeads.TotalVisits"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ int storedTag = GetInteger("LeadsMail:PotentialLeads.TotalVisits"); }

Outputting the template tag

<!--@LeadsMail:PotentialLeads.TotalVisits-->

Check if integer has a value

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