LeadsMail:Session.Id

Version: - integer  

Summary

Returns ID of the lead session.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("LeadsMail:Session.Id")

Check if tag has a value

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

Assign tag to a value for later use

@{ int storedTag = GetInteger("LeadsMail:Session.Id"); }

Outputting the template tag

<!--@LeadsMail:Session.Id-->

Check if integer has a value

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