Tested tool guide
Tested browser tools
Checked August 15, 2026
What BIMI Record Generator does, with a checked example
This tool assembles a BIMI TXT record from a logo URL and, optionally, a Verified Mark Certificate URL, formatting the tags into the record you publish at default._bimi.yourdomain.com. It does not fetch or validate the logo or certificate; it only builds the string. The thing people most often miss is that BIMI itself does nothing without DMARC already enforced at p=quarantine or p=reject with pct=100 on the domain - a correctly formatted record over an unenforced DMARC policy will simply be ignored by mailbox providers.
Worked example
A concrete input and expected output from the current implementation.
Input
domain: example.com, selector: default, logo URL: https://example.com/logo.svg, VMC URL: https://example.com/vmc.pem
->
Expected output
default._bimi.example.com. IN TXT "v=BIMI1; l=https://example.com/logo.svg; a=https://example.com/vmc.pem;"
The tool prepends selector._bimi.<domain> using the domain you supply (not one inferred from the logo or VMC URL, which may be hosted elsewhere), sets the version tag v=BIMI1, and appends the l= (logo) and a= (VMC) tags in order, each terminated with a semicolon.