Email Footer & Branding
When Tratto appends a footer to your emails — the "Sent using Tratto" badge, mandatory on some plans (today Free) and opt-in on the others.
Tratto can append a small footer to the HTML version of the emails you send. There are two variants:
- Branded footer — a "Sent using Tratto" badge, plus an unsubscribe link when the send is tied to a contact.
- Plain unsubscribe footer — just the unsubscribe link, no badge.
Which one an email gets depends on your plan and on a single workspace setting.
Plans with a mandatory footer
Some plans require the branded footer — today that is only Free. On those plans, every HTML email carries the branded "Sent using Tratto" footer — campaigns, transactional sends, and template test sends alike. It cannot be turned off.
- Campaigns and transactional emails linked to a contact: branded footer with an unsubscribe link.
- Transactional emails not linked to a contact, and template test sends: branded footer without an unsubscribe link.
Other plans
On every other plan — today Starter and Growth — the badge is off by default:
- Campaigns: a plain unsubscribe footer (marketing email must always offer an opt-out).
- Transactional emails and test sends: no footer at all — your HTML is delivered as-is.
Keeping the badge (opt-in)
A workspace on a plan without a mandatory footer can choose to keep the branded footer with the keepTrattoBranding workspace setting. When it is on, every HTML send gets the branded footer, exactly as on a plan that requires it:
branded footer = the plan requires it (today: Free — not configurable)
or keepTrattoBranding is trueYou can change the setting in two ways:
- Dashboard — the branding toggle in Settings → Workspace.
- API —
PATCH /v1/workspace:
curl -X PATCH https://api.tratto.email/v1/workspace \
-H "Authorization: Bearer tratto_live_..." \
-H "Content-Type: application/json" \
-d '{"keepTrattoBranding": true}'The field is returned by GET /v1/workspace and documented in the API Reference.
Good to know:
keepTrattoBrandingis accepted on any plan. On a plan that requires the footer it has no effect — the footer is there anyway.- The setting persists across plan changes: moving to a plan that requires the footer and back again does not reset your choice.
- SDK support: the Node.js SDK (
@tratto/email) will acceptkeepTrattoBrandingin its workspace update call starting with version 1.1.0, which is not published yet. Until then, use the dashboard or call the HTTP endpoint directly.
Behavior at a glance
| Plan | keepTrattoBranding | Campaign | Transactional linked to a contact | Transactional / test send, no contact |
|---|---|---|---|---|
| Footer required (today Free) | any value (ignored) | Branded + unsubscribe | Branded + unsubscribe | Branded, no unsubscribe link |
| Other plans (today Starter, Growth) | true | Branded + unsubscribe | Branded + unsubscribe | Branded, no unsubscribe link |
| Other plans | false / not set (default) | Plain unsubscribe | No footer | No footer |
Independently of the footer, every email sent through Tratto carries RFC 8058 one-click unsubscribe headers — see Privacy & Compliance.
Next Steps
- Sending your first email? See Send Email
- Running campaigns? See Campaigns
- Unsubscribe mechanics? See Privacy & Compliance
Edit this page on GitHub
Last updated on