A condition can be:
- Boolean (Recipient.Sex.IsMale, etc.);
- An arithmetic comparison (Recipient.Balance > 50);
- Request for a boolean function (IsEmpty(Recipient.Name)).
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
`@{ if Recipient.Sex.IsMale }
Dear Sir,
@{ end if }`
`@{ if Recipient.Sex.IsMale}
Dear Sir,
@{ else if Recipient.Sex.IsFemale}
Dear Madam,
@{ else }
Dear Sir or Madam,
@{ end if }`