LeadsMail:Profile.PointsEarned

Version: - string  

Summary

Returns points earned by the lead.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("LeadsMail:Profile.PointsEarned")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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