简体   繁体   中英

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:

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

But these are not opening up using Outlook's new mail, as it is supposed to.

On Chrome, it does nothing. On Firefox, IE & Safari it opens a new blank Chrome Window when I click on the link.

This system is new and has all the above browsers up to date.

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 视窗10 , you can find the Control Panel, if you open the Windows menu 视窗启动 , then click on the cogwheel icon 窗户齿轮 , then enter Control Panel in the search box.

If you are using Windows 7 or higher, then all you have to do is set the default email client. Check this in the control panel under Default Apps setting. Just click on the email client you want and you are all set.

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

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

I had this exact same problem, it seems at a glance to be a Microsoft Windows 10 issue, not supporting emails properly. Like matt suggested, go to default programs but change your email to the default option mail. Thats how I solved the issue.

  • 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.
      • 在此处输入图片说明
    2. In Chrome, go to Settings by selecting在此处输入图片说明
    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 (eg Gmail) is blocked, remove the block
    8. Open Gmail in a new tab and sign in
      • In the address bar, select the在此处输入图片说明
        • 在此处输入图片说明
        • 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.
      • 在此处输入图片说明

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>

It's a missing permission that you need to apply in CHROME.

Found the solution right here: https://blog.hubspot.com/marketing/set-gmail-as-browser-default-email-client-ht

You need to go to gmail.com and click on the little double diamond icon that appears in the url bar.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM