Skip to content Skip to sidebar Skip to footer

Href="mailto:" Is Not Working On Any Of The Browsers

I have created a webpage with some hyperlinks (not online yet). I'm supposed to include certain hyperlinks for the Email IDs on the page. I tried to create links in this format: &l

Solution 1:

Provided you have registered a default email client, this usually works, if you're using an <a> tag as follows:

<a href="mailto:someone@mozilla.org">Mail me</a>

To change or check the email client settings, do the following (cited from MSDN) - I have modified it slightly because it differs depending on the Windows version you're using:

  1. Depending on the Windows version:
    Open Default Programs by clicking the Windows Start button, and then clicking Default Programs.
    Or: Open the Control Panel in the Start Menu , then use the search text box in the upper right corner of the Control Panel screen and type Default Programs there. Hit Enter.

  2. Click Set your default programs.

  3. Under Programs, click the Email program you'd like to use, and then click Set this program as default.

  4. Click OK.

Note

The first time you start them, some email programs display a message asking you if you want to use that program as the default. If you choose to do so, this program will become your default email program, even if you've chosen a different program using Set your default programs earlier.


In Windows10, you can find the Control Panel, if you open the Windows menu WindowsStart, then click on the cogwheel icon WindowsCogwheel, then enter Control Panel in the search box.


Solution 2:

  • This is not really a programming question, but its been here for over 5 years, and the other answers didn't resolve my own question, which was resolved as follows.
    • I came to this question because I was experiencing the same issue, with properly formatted email anchors failing to open Gmail when Chrome was set as the default email app. The other answer did not work in Windows 10, with Chrome.
  • In the case of this OP, it seems that Google Chrome is already set as the Default Email app, as indicated by On Firefox, IE & Safari it opens a new blank Chrome Window when I click on the link, and the anchor is properly formatted, because clicking it in other browsers, opens a blank Chrome window.
    • This is the exact description for my own experience, which brought me to this question.

The HTML anchor does not seem to be the culprit.

  • To get Send Mail from <a href="mailto:someone@example.com " target="_top">Send Mail</a> to work in Google Chrome in Windows 10:
    1. Go to Settings, Apps, Default Apps, and under Email, select Google Chrome.
      • This step alone, does not necessarily work, I had to set the handler, as shown in the following steps, because Gmail was blocked.
      • enter image description here
    2. In Chrome, go to Settings by selecting enter image description here
    3. Select Privacy and security on the left side of the screen
    4. Select Site Settings
    5. Scroll down to Permissions and select Additional permissions
    6. Select Handlers
    7. Select Allow sites to ask to become default handlers for protocols
      • If a site (e.g. Gmail) is blocked, remove the block
    8. Open Gmail in a new tab and sign in
      • In the address bar, select the enter image description here
        • enter image description here
        • This page wants to install a service handler.
      • Select Allow, and then Done
    9. Return to the Settings tab, and mail.google.com will be the email handler.
      • enter image description here

Solution 3:

Are you sure you are closing the anchor correctly? The full HTML should be this:

<a href="mailto:someone@mozilla.org">Test</a>

Solution 4:

Try something like this:

<!DOCTYPE html>
<html>
<body>

<p>
Click to email :
<a href="mailto:someone@mozilla.org?Subject=Hello" target="_top">someone@mozilla.org</a>
</p>


</body>
</html>

Post a Comment for "Href="mailto:" Is Not Working On Any Of The Browsers"