LeadsMail:LastVisit

Version: - date  

Summary

Returns timestamp of the last visit.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDate("LeadsMail:LastVisit")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@LeadsMail:LastVisit-->

Check if date has a value

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