LeadsMail:Profile.PrimaryProfile

Version: - string  

Summary

Returns primary profile in lead profile.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("LeadsMail:Profile.PrimaryProfile")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("LeadsMail:Profile.PrimaryProfile"); }

Outputting the template tag

<!--@LeadsMail:Profile.PrimaryProfile-->

Check if string has a value

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