Email QR Code Generator - Free, Instant & No Sign-Up

Generate an email QR code in seconds — pre-fill To, Subject & Body. Free, no sign-up, runs in your browser. Download PNG or SVG instantly.

Fill in the fields to generate your QR code.
Download PNG

Generated in your browser — nothing is uploaded.

Turn Any Email Address Into a Scannable QR Code

Point a phone camera at this QR code and it opens a pre-filled email — address, subject, and message already typed in. Perfect for business cards, event flyers, conference badges, product packaging, or anywhere you want someone to reach you with one tap.

Everything runs in your browser. Your email address and message are never uploaded anywhere — the QR code is built locally, on your device.

How to Use the Email QR Code Generator

  1. Enter the recipient email address — the address the email will be sent to when someone scans the code.
  2. Add a subject line (optional) — pre-fills the email subject so the sender doesn't have to type it.
  3. Add a message body (optional) — pre-fills the email body with a greeting or context.
  4. Choose your size and colours — pick a pixel size, foreground colour, and background colour to match your brand.
  5. Download as PNG or SVG — PNG is great for print and web; SVG scales perfectly to any size without blurring.

Scanning the finished code opens the phone's default email app with the 'To', 'Subject', and 'Body' fields already filled in. The user just taps 'Send'.

Worked Example

Say you run a small business and want customers to contact you from your printed menu. You fill in:

FieldValue you enter
Email[email protected]
SubjectCatering enquiry
BodyHi, I'd like to find out about your catering options.

The tool encodes this as a mailto URI:

mailto:[email protected]?subject=Catering%20enquiry&body=Hi%2C%20I'd%20like%20to%20find%20out%20about%20your%20catering%20options.

That URI gets turned into a QR code image. A customer scans it, their email app opens, and the message is ready to send — no typing needed.

How to Generate a Mailto QR Code in Code

If you want to produce email QR codes programmatically, here are minimal working examples.

Python (using the qrcode library)

import qrcode
from urllib.parse import quote

email = '[email protected]'
subject = quote('Catering enquiry')
body = quote("Hi, I'd like to find out about your catering options.")

uri = f'mailto:{email}?subject={subject}&body={body}'

img = qrcode.make(uri)
img.save('email-qr.png')

Install the library with pip install qrcode[pil] before running this.

JavaScript (browser, using the qrcode npm package)

import QRCode from 'qrcode';

const email = '[email protected]';
const subject = encodeURIComponent('Catering enquiry');
const body = encodeURIComponent("Hi, I'd like to find out about your catering options.");

const uri = `mailto:${email}?subject=${subject}&body=${body}`;

QRCode.toDataURL(uri).then(url => {
  const img = document.createElement('img');
  img.src = url;
  document.body.appendChild(img);
});

Install with npm install qrcode. The result is a data URL you can drop straight into an <img> tag or save as a PNG.

How It Works Under the Hood

The tool builds a mailto URI from the fields you fill in — a standard format defined in RFC 6068. Special characters (spaces, commas, ampersands) are percent-encoded so the URI stays valid.

That URI string is then fed into a QR code encoder, which converts it into a grid of black-and-white squares using the ISO/IEC 18004 QR Code standard. No server is involved — the whole process runs in your browser.

Error correction is built into every QR code. Even if part of the code is covered by a logo or scuffed on a printed card, it can still be read. Higher error correction means a denser code, so for most uses the default 'M' (medium) level is a good balance.

When to Use an Email QR Code (and When Not To)

Good fits

  • Business cards and name badges — let people email you without typing an address.
  • Posters and flyers — a 'contact us' QR code on a workshop poster pre-fills a registration enquiry.
  • Product packaging — link directly to a support or feedback email with the product name already in the subject.
  • Conference materials — pre-fill the speaker's email and a session name so attendees can follow up instantly.

When another QR type works better

  • If you want to track clicks or update the destination later, use a URL QR code pointing to a contact form — you can update the form without reprinting the code.
  • For sharing full contact details (name, phone, company, address), a vCard QR code is a better choice.
  • If you're sending people to a web page, use a plain URL QR code instead.

Email QR codes never expire — the mailto data is encoded directly into the pattern of squares, not stored on a server. They're free to use and require no account.

Quick How-To: Create Your Email QR Code

  1. Type the recipient email address into the Email field above.
  2. Optionally fill in a Subject and Body to pre-compose the message.
  3. Pick a foreground and background colour to match your design (keep contrast high for reliable scanning).
  4. Set the size — 300×300 px is fine for screen; go 500 px or higher for crisp print.
  5. Hit Generate, then download as PNG (web/print) or SVG (scalable vector, ideal for print design files).

When someone scans the code, their phone's email app opens with the To, Subject, and Body fields already filled in — one tap sends it.

Ready to create yours? Use the generator at the top of this page — it takes about 20 seconds.

Frequently asked questions

Is my email address uploaded or stored anywhere?+
No. The QR code is generated entirely in your browser using JavaScript. Your email address, subject, and message body never leave your device and are not sent to any server.
Do email QR codes expire?+
Never. The mailto URI is encoded directly into the QR code pattern itself — there's no redirect, no server, and nothing to expire. As long as the printed or digital image exists, it works.
Will the email QR code work on all phones?+
Yes, on any modern smartphone. iOS Camera and Android Camera (or Google Lens) both read QR codes natively without a separate app. The phone opens its default email app with the fields pre-filled.
Can I pre-fill the subject and body, or just the email address?+
All three fields are supported — recipient address, subject line, and message body. Fill in as many or as few as you like. Leaving the subject and body blank creates a minimal mailto QR code with just the address.
What's the difference between PNG and SVG output?+
PNG is a pixel-based image — great for websites, email signatures, and most print jobs. SVG is a vector format that scales to any size without blurring, so it's the better choice when a designer will place the code in a print layout or large-format artwork.
What size should I use for printing on a business card?+
Generate at 500 px or higher, then size it to at least 2 cm × 2 cm on the printed card. Smaller than that and some scanners struggle. SVG output is ideal for print since it's resolution-independent.
Is this tool free? Do I need to sign up?+
Completely free, no account needed, no watermark, no usage limit. Download as many QR codes as you like.
Can I customise the colours to match my brand?+
Yes — you can change both the foreground (module) colour and the background colour. Keep the contrast high (dark on light works best) so scanners read the code reliably. Avoid making the foreground lighter than the background.