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.

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 true

You can change the setting in two ways:

  • Dashboard — the branding toggle in Settings → Workspace.
  • APIPATCH /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:

  • keepTrattoBranding is 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 accept keepTrattoBranding in 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

PlankeepTrattoBrandingCampaignTransactional linked to a contactTransactional / test send, no contact
Footer required (today Free)any value (ignored)Branded + unsubscribeBranded + unsubscribeBranded, no unsubscribe link
Other plans (today Starter, Growth)trueBranded + unsubscribeBranded + unsubscribeBranded, no unsubscribe link
Other plansfalse / not set (default)Plain unsubscribeNo footerNo footer

Independently of the footer, every email sent through Tratto carries RFC 8058 one-click unsubscribe headers — see Privacy & Compliance.

Next Steps


Edit this page on GitHub

Last updated on