LeadsMail:Profile.ProfileName

Version: - string  

Summary

Returns profile name of the lead. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("LeadsMail:Profile.ProfileName")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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