LeadsMail:PotentialLeads.LastVisit

Version: - date  

Summary

Returns date of last visit of the potential lead.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDate("LeadsMail:PotentialLeads.LastVisit")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetDate("LeadsMail:PotentialLeads.LastVisit"); }

Outputting the template tag

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

Check if date has a value

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