---
title: "May Release - 14.05.2019"
slug: "may-release-14052019"
updated: 2025-10-23T17:57:33Z
published: 2025-10-23T17:57:33Z
canonical: "help.frisbii.com/may-release-14052019"
---
> ## Documentation Index
> Fetch the complete documentation index at: https://help.frisbii.com/llms.txt
> Use this file to discover all available pages before exploring further.
# May Release - 14.05.2019
It is now possible to access metadata in mail templates. E.g. if customer metadata contains `shoe_size` key and value it can be accessed in the template as:
`{{customer.metadata.shoe_size}}`
Metadata is available as
```
customer.metadatasubscription.metadataplan.metadatainvoice.metadata
```
and add-on metadata as a parameter in the list of subscription add-ons `subscription.add_ons[].metadata`. Example iterating through subscription add-ons:
```
{{#subscription.add_ons}}Name: {{name}}
License plate: {{metadata.plate}}
{{/subscription.add_ons}}
```
For details on Mustache templating see: [https://mustache.github.io/mustache.5.html](https://mustache.github.io/mustache.5.html)