Skip to content

Email templates

Email templates let you save a subject + body + default attachments once and reuse them across customers. The templates are workspace-scoped — every operator sees the same library.

Email templates page

Creating a template

  1. Open Templates → Email from the sidebar.
  2. Click + New template.
  3. Fill Name (operator-visible, not sent), Subject, and the HTML body + Text body (the text body is the plain-text fallback for clients that don't render HTML).
  4. (Optional) under Attachments, attach default documents from your workspace docs — they're auto-included when an operator picks this template.
  5. (Optional) tick Send on customer create — Zellbox auto-sends this template to a new customer the moment they're saved.
  6. Click Save.

Edit template modal — name + description, language tabs (English default), subject + rich-text body with {{customer.firstName}} placeholders, attachments

Variables

Templates support Mustache-style placeholders. The resolver walks dotted paths against three top-level objects: the customer, the operator sending the email (user), and the workspace (company). Missing values render as an empty string — they never throw.

VariableResolves to
{{customer.firstName}}Customer's first name
{{customer.lastName}}Customer's last name
{{customer.email}}Customer's primary email
{{customer.phoneMobile}}Customer's mobile phone
{{user.firstName}}The operator sending the email
{{user.lastName}}Same
{{user.email}}Same
{{company.name}}Workspace name

Any field present on the customer / user / company records can be referenced with the same dotted-path syntax — these are just the ones operators reach for most.

Multi-language variants

Each template can carry one variant per language. The dropdown at the top of the editor switches between them; the customer's preferred language drives which variant ships at send time, with the workspace's default language as the fallback when no variant matches.

Editing, duplicating, deleting

Each row in the templates list has:

Email template row close-up — Edit / Duplicate / Delete action buttons on the right

  • Edit — opens the editor; saving updates immediately for every operator. Already-sent emails are unaffected (the body lives on the sent message).
  • Duplicate — copies the template; useful as a starting point for variants.
  • Delete — removes the template.

Sending an email with a template

From the customer's email popup (opened via the Email button on the customer-list row), pick the template from the dropdown in the Compose modal. The subject + body pre-fill with the resolved variables; edit + send.

Zellbox documentation