Template Strings

Template Strings are augmented strings. They can be used as normal text but can also be augmented:

Using dictionary values

Using the following format, a dictionary key will be interpreted to its value when sending the notification:

{{<dictionary key>}}

Example:

I am enrolling on {{ca.name}}

Depending on the notification event, values will be added to context to be interpreted.

If the value is not available in the context, the dictionary value will not be replaced

Using computation rules

Using the following format, a computation rule will be interpreted to its value when sending the notification:

{{<computation rule>}}

Example:

I am enrolling on {{ Lower({{ca.name}}) }}

Depending on the notification event, values will be added to context to be interpreted in the computation rule.

If the computation rule result is None, an empty string will be displayed. If it is an array, it will be in a comma separated string