LeadsMail:Profile.SecondaryProfile

Version: - string  

Summary

Returns secondary profile in lead profile.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("LeadsMail:Profile.SecondaryProfile")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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