Skip to content

Home Topics BIMI and VMC Certification SVG Tiny PS logos

BIMI and VMC Certification · SVG Tiny PS logos

How to set up SVG Tiny PS logo files: step-by-step guide (2026)

Short answer

To set up SVG Tiny PS logo files: Export a square SVG with the logo centered and a solid background color; Set baseProfile="tiny-ps" and version="1.2" on the root svg element; Add a <title> element matching your brand name. Then remove all script, filter, and external href references, and strip x/y attributes from the root.

Providers reject non-conforming files silently. A valid file is the difference between a logo appearing or not.

How to implement SVG Tiny PS logo files#

  1. Export a square SVG with the logo centered and a solid background color.
  2. Set baseProfile="tiny-ps" and version="1.2" on the root svg element.
  3. Add a <title> element matching your brand name.
  4. Remove all script, filter, and external href references, and strip x/y attributes from the root.
  5. Validate with a BIMI SVG converter and keep the file under 32 KB.

How to verify it worked#

Send a test message to seed mailboxes at Gmail, Outlook, and Yahoo, then inspect the Authentication-Results and delivery headers. Repeat after any DNS or sending-platform change.

Common mistakes#

  • Transparent backgrounds, which render unpredictably on dark-mode clients.
  • Text elements that rely on fonts; convert text to outlines.

Frequently asked questions#

Why does my SVG fail validation?

Most commonly a missing baseProfile attribute, embedded images, or leftover editor metadata. Run it through a converter that outputs the Tiny PS profile.

Keep reading on SVG Tiny PS logos