LeadsMail:Browser.Language

Version: - string  

Summary

Returns browser language used by the lead.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("LeadsMail:Browser.Language")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("LeadsMail:Browser.Language"); }

Outputting the template tag

<!--@LeadsMail:Browser.Language-->

Check if string has a value

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