If false
Conditionally merges different content depending on whether a value is false. This is the counterpart to If true.
Syntax
{{#ifFalse data}}true content{{else}}false content{{/ifFalse}}
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| Data | Text | Required | The value to evaluate. The first block shows only when the value reads false, in any capitalization. |
Note: An empty value is not the same as false. If the field has no value at all, the first block does not show. Use If blank when you need to detect a missing value.
Examples
The examples below are based on the following sample content:
{{#ifFalse Contact.profileComplete}}Finish setting up your profile.{{else}}Your profile is all set.{{/ifFalse}}
A. profileComplete is false
Finish setting up your profile.
B. profileComplete is true
Your profile is all set.