Day number is
Conditionally merges different content depending on if the date contains the day number.
SYNTAX
{{#ifdaynumberis data value}}true content{{else}}false content{{/ifdaynumberis}}
PARAMETERS
Name | Type | Required | Description |
---|---|---|---|
Data | Text | Required | Data to be evaluated. |
Value | Text | Required | Value to be searched. |
EXAMPLES
The examples below are based on the following sample content:
{{#ifdaynumberis Contact.ConfirmedUtc "1"}} Welcome! {{else}} Thanks for returning! {{/ifdaynumberis}}<br>
A. Contact’s ConfirmUtc field has a value of 1 for the day number
Welcome!
B. Contact’s ConfirmUtc field has a value of 5 for the day number
Thanks for returning!