LeadsMail:System.OperatingSystem

Version: - string  

Summary

Returns operating system used by the lead.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("LeadsMail:System.OperatingSystem")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("LeadsMail:System.OperatingSystem"); }

Outputting the template tag

<!--@LeadsMail:System.OperatingSystem-->

Check if string has a value

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