LeadsMail:AdditionalMessage

Version: - string  

Summary

Returns text of additional message of leads mail. 

Settings

The value is based on Additional message control in specific Leads mail (MC>Marketing>Leads>Leads mail).

Examples

Outputting the template tag

@GetString("LeadsMail:AdditionalMessage")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("LeadsMail:AdditionalMessage"); }

Outputting the template tag

<!--@LeadsMail:AdditionalMessage-->

Check if string has a value

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