Add here default email messages that should be inserted to new users account. To test it out, rename example.json.disabled to example.json, restart WildDuck and create a new account. Your INBOX should include the message composed from the example.
You can include some resources as external files by using the same name prefix as the main json file. Name prefix can be anything, it is used to sort the messages (if you want to insert multiple messages at once) and also to group resources related to that message.
* **name.json** is the main message file, this includes the general message structure
* **name.html** or **name.htm** is the HTML content of the message. If this file exists then it sets or overrides the `html` property in message json structure
* **name.text** or **name.txt** is the plaintext content of the message. If this file exists then it sets or overrides the `text` property in message json structure
* **name.filename.ext** is included in the message as an attachment
You can link the attachment files to HTML as images. For this either use the canonical name of the attachment (eg. "duck.png") or the filename of the attachment in the emails folder (eg "example.duck.png"). Make sure that the URL used in HTML does not use full path, it must point to the current folder.
```html
<imgsrc="/path/to/duck.png"><!-- BAD, path is not allowed -->
<imgsrc="duck.png"><!-- GOOD, canonical attachment name -->
<imgsrc="example.duck.png"><!-- GOOD, actual filename in folder -->
<imgsrc="./duck.png"><!-- Not GOOD but works as leading ./ is removed from the filename -->