- ✕This summary was generated using AI based on multiple online sources. To view the original source information, use the "Learn more" links.
You can create an email link in HTML using the mailto: protocol inside an <a> tag. When clicked, it opens the user's default email client with pre-filled fields like recipient, subject, CC, BCC, and body.
Example: A complete email link with subject, CC, BCC, and body
<!DOCTYPE html><html><head><title>Email Link Example</title></head><body><h2>Contact Us</h2><a href="mailto:support@example.com?cc=manager@example.com&bcc=admin@example.com&subject=Support%20Request&body=Hello%20Team,%0A%0AI%20need%20assistance%20with%20my%20account.%0AThank%20you.">Send Email</a></body></html>Copied!✕CopyHow it works:
mailto: — Specifies that the link should open an email client instead of a webpage.
?subject= — Prefills the subject line (spaces encoded as %20).
&cc= / &bcc= — Adds carbon copy and blind carbon copy recipients.
&body= — Prefills the email body (line breaks encoded as %0A).
Basic version:
<a href="mailto:someone@example.com">Send Email</a>Copied!✕CopyWith multiple recipients:
Send Mail Using HTML Email Link - W3Schools
Follow this step-by-step tutorial to learn how to send emails using HTML email links or mailto links. You can add CC and BCC, prefill the subject line, send to multiple recipients, prefill the email body, and …
How to Create Mailto Links in HTML - W3docs
Learn about how to create a Mailto link in HTML step by step with examples. See also the downsides that Mailto links can have.
How to Link an Email in HTML? - GeeksforGeeks
Oct 17, 2024 · In HTML, you can create links that, when clicked, open an email client with a pre-composed message. This is useful for providing contact information …
HTML input type="email" - W3Schools
HTML <input> type attribute. The <input type="email"> defines a field for an e-mail address. The input value is automatically validated to ensure it is a properly formatted e-mail address. To define an e …
Code sample
<label for="email">Enter your email:</label><input type="email" id="email" name="email">HTML - Email Links - Online Tutorials Library
Syntax The following HTML code creates a clickable email link that opens the user's default email client to send an email to the specified address:
HTML Email: A Beginner's Guide to Creating and …
Sep 15, 2025 · For this post, we’re going to discuss how to create and send HTML emails, and why you should do so. At some points, we’ll get deep into how you’d …
A Complete Guide to Create Your Own HTML Email
Jul 5, 2024 · Learn how to create custom coded, responsive HTML emails by using simple email template HTML code that renders perfectly across devices and …
A complete guide to creating effective HTML emails
Aug 29, 2025 · From coding basics and email design principles to tools, templates, and deliverability tips, you’ll learn how to craft effective HTML emails that look …
HTML Email Explained: Creation, Templates, Best …
Jul 10, 2024 · Learn what HTML email is, how to create HTML email from scratch or using templates and builders, best practices, and role of HTML in email …
How to Code, Design, and Send HTML Emails - Mailmodo
Oct 26, 2025 · In this guide, you will learn to code and design HTML emails, best practices, and 5 examples of responsive email templates offered by Mailmodo.