February 9, 2025
Email remains a cornerstone of digital communication, and while sending emails manually is second nature, automating and optimizing the experience using mailto
links can significantly enhance efficiency, user experience, and conversion rates.
At its core, mailto
is an HTML scheme that allows a user to click a link and open their default email client with pre-filled details. But its capabilities extend far beyond simply inserting an email address. This article will break down every possible feature, covering the subject, body, multiple recipients, CC, BCC, and advanced formatting tricks that push mailto
to its limits.
Basic Syntax - The most elementary form of mailto
looks like this:
<a href="mailto:someone@mail.com">Email Me</a>
This simply opens the user’s email client with "someone@mail.com" in the recipient field. Useful? Yes. But barely scratching the surface of what mailto
can do.
Expanding the mailto
Capabilities - The Parameters Available
A single recipient is rarely enough. We often need a subject line, a predefined message, and perhaps additional recipients. Enter query parameters. These allow us to pre-fill various fields, giving users a seamless, frictionless experience when composing an email.
Including a subject line is one of the simplest enhancements:
<a href="mailto:someone@mail.com
?
subject=Hello%20There">Email Me</a>
Here, subject=Hello%20There
pre-populates the subject field. The %20
represents a space—because URLs can’t handle spaces directly.
Need to guide users with a predefined message? The body
parameter is your friend:
<a href="mailto:someone@mail.com
?
subject=Hello%20There
&
body=I%20love%20BBnS%20so%20much!">Send Feedback</a>
This loads an email with:
Want to copy multiple people? The cc
(carbon copy) and bcc
(blind carbon copy) parameters let you do just that:
<a href="mailto:someone@mail.com
?
cc=another@mail.com
&
bcc=hidden@mail.com
&
subject=Hello%20F1
&
body=I%20want%20to%20be%20a%20racer.">Email F1 Racing</a>
This ensures:
another@mail.com
is CC’d (visible to all recipients)hidden@mail.com
is BCC’d (hidden from other recipients)Handling multiple recipients
Separating multiple email addresses with commas works in most cases, but some clients require encoded separators:
<a
href="mailto:user1@mail.com,user2@mail.com
?
subject=Group%20Meeting">Message the Team</a>
for using commas ,
<a
href="mailto:user1@mail.com%2Cuser2@mail.com
?
subject=Work%20BBnS">Let's Work</a>
for using encoded separators %2C
%20 | Space |
%0A | New Line |
%27 | ' |
%2C | , |
See here for full list of encoded characters.
Emails often include characters like &
, ?
, =
——but these must be URL encoded:
&
→ %26
=
→ %3D
?
→ %3F
#
→ %23
mailto
in Anchor tags mailto
links to create easy ways for users to reach out without filling forms.While mailto
is powerful, it has limitations:
Workaround?
For richer experiences, use server-side email handling via mailto
as a fallback.
The mailto
scheme is deceptively simple but incredibly powerful when used effectively. From pre-filled subject lines to multi-recipient emails and structured body text, it simplifies communication across various use cases.
Whether for contact links, support queries, or marketing campaigns, mastering mailto
can significantly enhance how users interact with emails.
And now, you're fully equipped to take full advantage of it.