T
transmit.

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

  1. Go to Templates in the dashboard sidebar
  2. Click Create Template
  3. Enter a template name (for internal reference)
  4. Choose your editor mode: Visual (drag-and-drop) or HTML (code)
  5. Design your email content
  6. 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