# How to Create a Hyperlink in an Email Adding a hyperlink to an email lets you embed a clickable link behind readable text — so instead of pasting a long, messy URL, your reader sees something clean like "Visit our website" and clicks straight through. It's one of the most useful formatting skills in email, and how you do it depends entirely on which email client or platform you're using. ## What a Hyperlink Actually Is A hyperlink has two parts: the **display text** (what the reader sees) and the **URL** (where they go when they click). In HTML, it looks like this: ```html Visit our website ``` Most email clients handle this for you behind the scenes — you never need to write raw HTML. But understanding the structure helps when things don't behave as expected. ## How to Insert a Hyperlink in the Most Common Email Clients ### Gmail (Web Browser) 1. Type the text you want to link. 2. Highlight it with your cursor. 3. Click the **link icon** in the formatting toolbar (it looks like a chain link 🔗). 4. Paste your URL into the box that appears. 5. Press **OK** or hit **Enter**. If you don't see the formatting toolbar, click the **A** icon at the bottom of the compose window to expand formatting options. Gmail also auto-detects pasted URLs and converts them — but that gives you a bare link, not anchor text. ### Outlook (Desktop App) 1. Highlight the text you want to make clickable. 2. Right-click and choose **Hyperlink**, or press **Ctrl + K** (Windows) / **Cmd + K** (Mac). 3. In the dialog box, enter the URL in the "Address" field. 4. Click **OK**. Outlook's desktop app gives you additional options here, like linking to a specific file, a location within a document, or an email address — useful if you're composing more structured messages. ### Apple Mail (macOS) 1. Type and highlight your anchor text. 2. Go to **Edit → Add Link** or press **Cmd + K**. 3. Enter the URL and click **OK**. ### Mobile Email Apps (iOS and Android) This is where things get inconsistent. On mobile, hyperlink insertion support varies significantly: - **Gmail app (iOS/Android):** Currently limited. You can paste a URL directly, but inserting a hyperlink with custom anchor text isn't straightforward in the mobile compose view. - **Outlook app (iOS/Android):** Slightly better support — long-press selected text may reveal link options depending on the version. - **Apple Mail on iPhone/iPad:** Limited native support for inserting formatted hyperlinks in compose mode. For most mobile users, the practical workaround is to draft the message on desktop, or paste the raw URL and accept that it won't have custom display text. ## Hyperlinking an Email Address If you want a link that opens a new email when clicked, use a **mailto link**. The format is: ``` mailto:[email protected] ``` Follow the same steps as above, but paste `mailto:[email protected]` in the URL field instead of a web address. The reader clicks the text, and their default email app opens a new compose window pre-addressed to that contact. ## Keyboard Shortcut Worth Knowing Across most desktop email clients and even web apps, **Ctrl + K** (Windows/Linux) or **Cmd + K** (Mac) is the near-universal shortcut for inserting a hyperlink. Highlight your text first, then trigger the shortcut — it works in Gmail, Outlook, Apple Mail, Thunderbird, and most browser-based editors. ## What Affects Whether Your Hyperlink Works for the Recipient Creating the link is only half the picture. A few variables determine whether it actually functions properly on the receiving end: | Factor | Why It Matters | |---|---| | **Recipient's email client** | Some clients strip formatting or don't render HTML | | **Plain text vs. HTML email** | Plain text emails don't support hyperlinks at all — only raw URLs | | **Corporate email filters** | IT security tools sometimes block or rewrite links | | **Mobile vs. desktop viewing** | Rendering differences can affect how links display | **HTML email** is the standard for formatted messages. If your email client is set to send in **plain text mode**, hyperlinks won't work — the link will appear as raw text only, or won't appear at all. You can usually toggle between HTML and plain text in your client's compose settings. ## Hyperlinking in Email Marketing Platforms vs. Standard Email Clients ✉️ If you're working in a platform like Mailchimp, HubSpot, or Klaviyo rather than a standard email client, the process is similar — highlight text in the drag-and-drop editor, click the link icon, paste the URL — but these platforms also track link clicks, apply UTM parameters automatically, and sometimes rewrite URLs through their own redirect systems. That's worth knowing if you're analyzing campaign performance or auditing where links resolve. ## The Variables That Shape Your Experience The method that works smoothly for one person may be unavailable or clunky for another. Your specific situation — which email client you use, whether you're on desktop or mobile, whether you're sending individual emails or bulk campaigns, and whether your recipients' systems render HTML — shapes every step of this process. Someone composing on Outlook desktop has a different experience from someone on Gmail mobile, and both differ from someone building a newsletter in a dedicated email marketing tool. The mechanics are the same underneath, but the interface, shortcuts, and limitations vary enough that the right approach genuinely depends on your own setup.