HomeEmail ToolsBIMI Lookup
Email Tool

BIMI Lookup

Check if your BIMI DNS record is correctly published, your logo URL is reachable, and your DMARC policy meets the enforcement requirement for brand logo display in Gmail and Apple Mail.

Checks
BIMI DNS Record
v=BIMI1 TXT at default._bimi.domain
Also Verifies
Logo URL + DMARC
Confirms logo is reachable and DMARC is enforced.
What BIMI Requires
DMARC must be at p=quarantine or p=reject before any mail provider will display your brand logo. A VMC certificate is additionally required for Gmail display.
BIMI Lookup — Start Here
Waiting for input
Enter input and press Check
How to Use

Use BIMI Lookup in 4 Steps

01
Enter your domain
Type the domain you want to check BIMI for, e.g. example.com.
02
Run BIMI Lookup
We query default._bimi.yourdomain.com for a v=BIMI1 TXT record.
03
Review your record
Confirm the l= logo URL is reachable and your DMARC is at p=quarantine or p=reject.
04
Fix and re-verify
Apply corrections at DNS or logo hosting level, then re-run to confirm.

What is BIMI Lookup?

BIMI Lookup checks the default._bimi.yourdomain.com DNS TXT record that lets brands display a verified logo in email inboxes. Use this tool to verify your BIMI record is published, your SVG logo URL is reachable, and your DMARC prerequisite is met before your logo appears in Gmail, Apple Mail, or Yahoo.

The Architecture of BIMI: Verified Visual Identity

BIMI is more than just a profile picture for your emails. It is a standardized, DNS-based protocol (RFC 9091) that links your verified brand logo to your sending domain. When a user sees your official, high-resolution logo next to your name in their Gmail or Apple Mail inbox, they are receiving implicit confirmation that the email has been authenticated and verified by the receiving mail provider.

The technical workflow is a multi-step verification process. When an email arrives, the receiving mail server first checks your SPF, DKIM, and DMARC status. If your DMARC policy is at an enforcement level (reject or quarantine), the server then queries your DNS for a BIMI record at default._bimi.yourdomain.com. This record contains a URL pointing to your logo file and, optionally, a URL pointing to a Verified Mark Certificate (VMC) that proves you own the trademark for that logo.

Support StatusMail Client / ProviderVMC Required?Impact on Brand
Full SupportGoogle GmailYesHigh — Verified Blue Checkmark
Full SupportApple Mail (iOS/macOS)No (Optional)High — Integrated Inbox Logo
Partial SupportYahoo MailNo (Optional)Medium — Growing Integration
No SupportMicrosoft OutlookNot ApplicableNone — Uses Internal Profiles

The table above shows that Google Gmail requires a VMC for logo display, while Apple Mail and Yahoo allow self-asserted BIMI where the logo displays based purely on the DNS record. This divide makes BIMI a tiered implementation: every brand can start with basic BIMI for Apple users, while larger enterprises invest in VMCs to capture the Gmail audience with a Verified blue checkmark.

Prerequisites: What You Need Before Publishing a BIMI Record

BIMI has the strictest prerequisites of any email standard. If even one of these pillars is weak, the receiving mail server will silently ignore your BIMI record entirely.

The primary hurdle is DMARC Enforcement. Your DMARC policy must be set to either p=quarantine or p=reject. A policy of p=none (which is what most companies start with for monitoring) is explicitly excluded from the BIMI standard. Furthermore, many providers require your Percentage tag (pct) to be 100.

  • SPF & DKIM Maturity: Your domain must have functional SPF and DKIM records. DKIM signatures must use at least 1024-bit keys (2048-bit is the industry recommendation).
  • Identifier Alignment: Your From: header domain must match the domain used in your SPF and DKIM signatures. This "alignment" is what allows DMARC to pass successfully.
  • HTTPS Availability: Your logo file must be hosted on a secure https:// server with a valid SSL certificate. Plain http:// URLs will be rejected.
  • Reputation Health: Some providers (like Google) also perform an internal reputation check. Even if your settings are perfect, if your domain has a bad reputation due to high spam complaints, they may temporarily suppress your BIMI logo.

Authentication alignment is often the hidden failure point. Many companies use external ESPs like SendGrid or Mailchimp but forget to set up Branded Links or Custom Return Paths. In these cases, the ESP signs the mail with their domain, but your email says it is from your domain. This results in a DMARC pass but an Alignment Fail, which is fatal for BIMI. You must ensure that every mail flow originating from your domain is fully aligned and authenticated before attempting to publish your BIMI record.

VMC vs. Self-Asserted BIMI

FeatureSelf-Asserted BIMIVMC-Verified BIMI
Cost$0 / Free~$1,200–$1,500 per year
RequirementsDNS Record + SVG LogoTrademark + DNS + SVG + VMC
Wait TimeImmediate1–4 Weeks (Verification)
Verified MarkNoYes (Gmail Verified Checkmark)
Gmail SupportNoYes
Apple Mail SupportYesYes

A VMC is a digital proof of ownership for your logo, issued by an authorized Certificate Authority like DigiCert or Entrust. It proves to the mail world that you hold a registered trademark for the logo you are trying to display. To get a VMC, your logo must be a registered trademark in one of the approved global offices (like the USPTO in the US or EUIPO in Europe). If your logo is not yet a registered trademark, implement self-asserted BIMI today and upgrade once your trademark registration completes.

The SVG Tiny P/S Requirement

You cannot use a .png, .jpg, or even a standard .svg file. BIMI requires a specific, secure subset of the SVG format called SVG Tiny Portable/Secure (Tiny P/S). Exporting an SVG from Adobe Illustrator or Figma and simply changing the file extension will not work. You must use a specialized BIMI SVG Converter tool to sanitize the file.

  • Square Aspect Ratio: Your logo should be perfectly square (1:1). Most mail clients display the logo in a circle, so ensure your branding is centered.
  • Solid Background: Avoid transparency. A white logo on a transparent background will vanish in Dark Mode.
  • No Animations: BIMI does not support animated logos. It must be a static vector.
  • File Size: Keep it under 32KB. Larger files may fail to load on mobile.
  • MIME Type: Your server must return image/svg+xml. Serving text/plain or application/octet-stream will cause the client to ignore the image for security reasons.

BIMI Record Syntax and DNS Configuration

BIMI is published as a DNS TXT record at default._bimi.yourdomain.com. The record must begin with the version tag v=BIMI1. The two primary tags are l= (Location of the logo URL) and a= (Authority, or the VMC certificate URL).

; Self-Asserted BIMI Record (no VMC):
default._bimi.yourdomain.com  TXT  "v=BIMI1; l=https://cdn.example.com/logo.svg"

; VMC-Verified BIMI Record:
default._bimi.yourdomain.com  TXT  "v=BIMI1; l=https://cdn.example.com/logo.svg; a=https://cdn.example.com/vmc.pem"

If you are using a self-asserted setup, omit the a= tag entirely to avoid validation confusion. Set your TTL to 3600 (1 hour) so you can fix mistakes quickly if your logo URL changes.

# Verify your BIMI record is visible to the public internet:
dig TXT default._bimi.yourdomain.com +short

# Check that your logo URL is accessible and returns the correct MIME type:
curl -sI https://cdn.example.com/logo.svg | grep -i content-type
# Expected: content-type: image/svg+xml

Troubleshooting Common BIMI Failures

Failure SymptomLikely CauseRecommended Fix
Logo missing in GmailNo VMC or p=none DMARCPurchase VMC or enforce DMARC policy
Logo missing in Apple MailSVG not Tiny P/S compliantRe-export with a BIMI SVG converter tool
bimi=fail in email headersLogo URL not accessibleCheck HTTPS availability and MIME type
bimi=skipped in email headersDMARC at p=noneUpgrade DMARC to quarantine or reject
BIMI check times outLogo URL behind firewall/VPNExpose logo URL to the public internet
Logo appears then disappearsSSL cert expired on logo hostMonitor SSL expiry for your logo CDN

Check email headers for BIMI-Location or Authentication-Results. If you see bimi=fail or bimi=skipped, the header often provides a specific reason such as no-vmc, policy-not-at-enforcement, or logo-fetch-failed. Remember that BIMI results are heavily cached — after fixing a mistake, allow 24–72 hours for old bad results to expire from provider caches like Gmail or Yahoo.

Volume thresholds are another invisible barrier. Some providers, particularly Gmail, only display BIMI logos for domains that reach a minimum sender volume or trust level. If you only send a handful of emails per month, the solution is time and consistent, high-volume, clean sending behavior.

Frequently Asked Questions

Does BIMI work in Microsoft Outlook?
No. As of 2025, Microsoft Outlook (including Office 365) does not support the BIMI standard. Microsoft uses its own internal system for logo display, often pulling from Microsoft 365 profiles or LinkedIn. Because Gmail and Apple Mail represent over 70% of the mobile market, BIMI is still considered a mandatory upgrade for serious brands.
Can I use a regular SVG file without a VMC?
No. Even for self-asserted BIMI (without a VMC), the logo file must still adhere to the SVG Tiny P/S standard. This is required for security and compatibility reasons across different mail clients. A standard SVG will likely be blocked by the receiver's security filters, regardless of your VMC status.
If I have multiple subdomains, do I need multiple BIMI records?
Usually yes. BIMI is a per-domain check. If you send from marketing.example.com and support.example.com, you should place a BIMI record at the default selector for each subdomain. Some providers will fall back to the organizational domain (example.com), but explicit records at the subdomain level are the most reliable path to consistent display.
How do I know if I am eligible for a VMC?
The most important requirement is a Registered Trademark. You must have an active registration number from a supported intellectual property office (USPTO, UK IPO, EUIPO, etc.). If your logo is trademark pending or you only have common-law rights, you cannot purchase a VMC yet. Implement self-asserted BIMI in the meantime.
Why do I see a blue checkmark on some emails but not others?
The blue Verified checkmark in Gmail is only granted to senders who have a valid VMC. If a brand has BIMI set up but does not have a VMC, you might see their logo but not the Verified badge. The checkmark is the reward for the extra layer of third-party trademark verification.
Does BIMI improve my email deliverability?
Not directly. A mail server does not see the logo and automatically route to the inbox. However, because BIMI requires you to have perfect SPF, DKIM, and DMARC settings at enforcement level, the act of qualifying for BIMI will significantly improve your overall deliverability and sender reputation.
BIMI Prerequisites
✓ DMARC at p=quarantine or p=reject
✓ SPF and DKIM aligned
✓ SVG logo in Tiny P/S format
✓ Logo hosted on HTTPS
✓ VMC cert (required for Gmail)
DNS Record Location
default._bimi.
yourdomain.com
TXT record with v=BIMI1
Free Newsletter

Get guides like this by email

DNS, email auth, and security playbooks delivered when they publish. No spam.