*`upperCase`, for example - `${recipientFirstName:upperCase}`
*`lowerCase`, for example - `${recipientFirstName:lowerCase}`
*`capitalize`, for example - `${recipientFirstName:capitalize}`
<divclass="divider"></div>
##### Examples
* Let's assume the notification about alarm with type 'High Temperature' for device 'Sensor A' was assigned to user 'John Doe'. The following template:
```text
Alarm '${alarmType}' - ${action:upperCase}
{:copy-code}
```
will be transformed to:
```text
Alarm 'High Temperature' - ASSIGNED
{:copy-code}
```
The following template:
```text
Alarm '${alarmType}' (${alarmSeverity:capitalize}) was assigned to user
{:copy-code}
```
will be transformed to:
```text
Alarm 'High Temperature' (Critical) was assigned to user