Futures
Access hundreds of perpetual contracts
TradFi
Gold
One platform for global traditional assets
Options
Hot
Trade European-style vanilla options
Unified Account
Maximize your capital efficiency
Demo Trading
Introduction to Futures Trading
Learn the basics of futures trading
Futures Events
Join events to earn rewards
Demo Trading
Use virtual funds to practice risk-free trading
Launch
CandyDrop
Collect candies to earn airdrops
Launchpool
Quick staking, earn potential new tokens
HODLer Airdrop
Hold GT and get massive airdrops for free
Launchpad
Be early to the next big token project
Alpha Points
Trade on-chain assets and earn airdrops
Futures Points
Earn futures points and claim airdrop rewards
Mastering Email Template Customization in Production Appwrite Deployments
Running Appwrite in production environments—especially when deployed through managed platforms like Digital Ocean Marketplace—often requires adapting email templates to reflect your brand identity. This comprehensive guide walks you through the process of implementing persistent customizations using Docker volume mounts, ensuring your changes survive version upgrades and container lifecycle events.
How Appwrite’s Email Infrastructure Works
The email system powering Appwrite relies on two interconnected layers:
Template Layer (TPL Files): HTML markup files responsible for email structure, stored at /usr/src/code/app/config/locale/templates/
Localization Layer (JSON Files): Text content and translations organized by language, located at /usr/src/code/app/config/locale/translations/
The platform includes several pre-configured templates:
Why Direct Container Editing Fails in Production
Pre-built Appwrite distributions package everything within Docker containers. Attempting to modify template files directly inside running containers creates a critical problem: all modifications vanish whenever you:
Achieving Persistent Customization with Volume Mounts
Docker volume mounts provide the solution by overlaying your custom files onto container directories, while maintaining them on the host filesystem—completely separate from the container lifecycle.
Setting Up Email Template Customization: A Practical Approach
Initial Server Setup
Begin by establishing an SSH connection to your infrastructure: