Templates
Create reusable email templates with dynamic variables and personalization. Visual editor and HTML support.
Design beautiful, high-converting emails once and reuse them across your entire stack.
Creating a Template
- Go to Templates in the dashboard sidebar
- Click Create Template
- Enter a template name (for internal reference)
- Choose your editor mode: Visual (drag-and-drop) or HTML (code)
- Design your email content
- Click Save
Your template is now available for campaigns and API sends.
Dynamic Variables
Use double curly braces to inject data into your templates:
Hello {{firstName}}, your order {{orderId}} is ready!Rendering via API
POST /email/send
{
"templateId": "tmpl_987654",
"to": "user@example.com",
"variables": {
"firstName": "Mudit",
"orderId": "#10293"
}
}Editor Features
- Visual & HTML Mode: Switch between our drag-and-drop editor and raw HTML coding
- Responsive Preview: Instantly see how your email looks on mobile and desktop devices
- Variable Highlighting: Dynamic variables are highlighted for easy identification
Next Steps
- Create a Campaign — Use your template to send to a list
- Send Email — Send programmatically with templates