# How to Hyperlink an Email Address (Mailto Links Explained) Clicking a name or address and having your email client open automatically — that's a **mailto link** at work. It's one of the simplest forms of hyperlinking, but the way you create one varies depending on where you're working: a webpage, a Word document, a Google Doc, an email newsletter, or a plain HTML file. Here's how it all fits together. ## What Is a Mailto Hyperlink? A **mailto link** is a type of hyperlink that uses the `mailto:` protocol instead of the usual `https://`. When a user clicks it, their default email client opens a new compose window with the address already filled in. The basic HTML syntax looks like this: ```html Email Us ``` The visible text — "Email Us" in this case — can be anything. The `mailto:` part is what tells the browser or application what to do with the click. You can also pre-fill the **subject line**, **CC**, **BCC**, and even **body text** by adding parameters: ```html Contact ``` Spaces and special characters in these parameters need to be **URL-encoded** (a space becomes `%20`, for example) to work correctly across browsers and clients. ## How to Add a Mailto Link in Different Environments The method changes significantly depending on your platform. 📧 ### In HTML (Web Pages) Write the full anchor tag directly in your HTML: ```html [email protected] ``` This is the most reliable approach and gives you full control over pre-filled fields and link text. ### In Microsoft Word or Outlook 1. Select the text you want to turn into a link 2. Right-click and choose **Hyperlink** (or press `Ctrl+K` / `Cmd+K`) 3. In the dialog box, look for **"E-mail Address"** in the left panel 4. Enter the address in the **E-mail address** field 5. Word automatically adds the `mailto:` prefix Outlook's compose window works similarly and even allows you to set a default subject line within the hyperlink dialog. ### In Google Docs 1. Highlight your text 2. Click **Insert → Link** or press `Ctrl+K` 3. In the URL field, type `mailto:[email protected]` manually — Google Docs won't add it automatically Google Docs doesn't have a dedicated email link option, so typing the full `mailto:` prefix yourself is the key step most people miss. ### In Website Builders (WordPress, Squarespace, Wix) Most visual editors have a link tool accessible by highlighting text and clicking the chain/link icon. When entering the URL, you type the full `mailto:[email protected]` string. Some builders detect the format and label it as an email link automatically; others treat it like any other custom URL. ### In Email Marketing Platforms Platforms like Mailchimp, Klaviyo, or Campaign Monitor typically include a **link type** dropdown when inserting hyperlinks. Selecting **"Email"** from that dropdown lets you enter the address without worrying about the `mailto:` syntax — the platform handles it behind the scenes. ## Variables That Affect How Mailto Links Behave A mailto link working correctly on your end doesn't guarantee the same experience for everyone who clicks it. Several factors shape the outcome: | Variable | What It Affects | |---|---| | **Default email client** | Whether clicking opens Gmail, Outlook, Apple Mail, Thunderbird, etc. | | **Browser settings** | Chrome, Firefox, and Safari each handle mailto protocol associations differently | | **Operating system** | Windows, macOS, iOS, and Android manage default app settings in separate places | | **Mobile vs. desktop** | On mobile, mailto links almost always work; on desktop, they require a configured client | | **Corporate IT environments** | Some managed devices override default app associations | The biggest real-world friction point: **desktop users who rely entirely on webmail** (Gmail or Outlook in a browser tab) may find that clicking a mailto link opens the wrong app — or nothing at all — if they haven't configured their browser to handle `mailto:` links through their webmail provider. Both Gmail and Outlook Web can be set as default handlers for mailto links in most browsers, but this is a user-side setting, not something you control as the link creator. ## When Mailto Links Are — and Aren't — the Right Tool 🔗 Mailto links work well for: - **Contact pages** on websites - **Email signatures** in desktop clients - **Internal documents** shared within an organization that uses a consistent email client They become less reliable when: - Your audience is mixed (some use webmail, some use desktop clients) - You're in an **HTML email** — some email clients strip or block mailto links within email bodies for security reasons - You need to **track clicks** — mailto links generate no analytics data on their own For situations where click tracking or universal compatibility matters, some teams display the email address as plain text or use a **contact form** instead. ## The Details That Trip People Up - Forgetting the `mailto:` prefix is the most common mistake in editors that don't add it automatically - **URL-encoding** matters in pre-filled subject lines and body text — unencoded ampersands or spaces can break the link - Some platforms require the link to be entered in a specific field format; pasting a full mailto string into a standard URL field works in most cases, but not all - **Link display text** doesn't have to be the email address itself — it can be a name, a phrase, or a button label How well a mailto hyperlink serves any specific situation depends heavily on who's clicking it, what device and client they're using, and whether your platform handles the `mailto:` protocol the way you expect it to.