LeadsMail:Referrer.URL

Version: - string  

Summary

Returns URL of referrer.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("LeadsMail:Referrer.URL")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("LeadsMail:Referrer.URL"); }

Outputting the template tag

<!--@LeadsMail:Referrer.URL-->

Check if string has a value

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