Die Funktionalität dieser Website ist durch Wartungsarbeiten eingeschränkt, die Ihr Erlebnis verbessern sollen. Wenn ein Artikel Ihr Problem nicht löst und Sie eine Frage stellen möchten, können Sie unsere Gemeinschaft über @FirefoxSupport auf Twitter, /r/firefox oder Reddit fragen.

Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

E-mail link in Firefox 62.0.3 stopped working on Windows 10

more options

I cannot get the e-mail link in version 62.0.3 to work with Yahoo. In previous versions the link was working just fine.

I cannot get the e-mail link in version 62.0.3 to work with Yahoo. In previous versions the link was working just fine.

Ausgewählte Lösung

I created an add-on that might be more convenient than using the earlier workarounds.

https://addons.mozilla.org/firefox/addon/yahoo-mail-email-link-fix/

It integrates into the right-click context menu:

  • email link => sends the address to Yahoo mail
  • page => sends page title as subject and url as the body

If you try it, let me know how it goes.

Diese Antwort im Kontext lesen 👍 0

Alle Antworten (2)

more options

Which problem are you seeing:

(1) Firefox doesn't send the link to Yahoo at all:

Please check this setting: Change the program used to open email links.

(2) Firefox sends the link to Yahoo, a new tab opens, but the information is missing.

Another user reported this issue last month, and it seems Yahoo no longer accepts the format Firefox has been sending up to now.

The best workaround I could come up with was a little script that grabs the title, URL and any currently selected text in the page and sends them to the currently working Yahoo mail "compose" URL.

You can save the script as a button on your Bookmarks Toolbar or and entry on your Bookmarks Menu -- a "bookmarklet". When you click it, it runs the script.

You can get it here:

https://www.jeffersonscher.com/res/sumomarklets.html#ymlink

If you try it, let me know how it goes for you.


If you're curious, this is the script, broken into separate lines for readability:

javascript: var sel=window.getSelection(); var text=''; if(!sel.isCollapsed){ text=sel.toString(); text=text.replace(/^\s*$/,'').replace(/\r/g,'\r').replace(/\n/g,'\n').replace(/^\s+|\s+$/g,' '); text=' \n\n'+text.replace(new RegExp(/\u2019/g),'\'').replace(new RegExp(/\u201A/g),',').replace(new RegExp(/\u201B/g),'\''); } window.open('https://compose.mail.yahoo''.''com/mailto:?subject='+encodeURIComponent(document.title)+'&body='+encodeURIComponent(window.location.href)+encodeURIComponent(text)+''); void 0;

more options

Ausgewählte Lösung

I created an add-on that might be more convenient than using the earlier workarounds.

https://addons.mozilla.org/firefox/addon/yahoo-mail-email-link-fix/

It integrates into the right-click context menu:

  • email link => sends the address to Yahoo mail
  • page => sends page title as subject and url as the body

If you try it, let me know how it goes.