URL ohne Browsererweiterung versenden

Hier findest du interessante Informationen zu den Themen Hard- und Software.
Antworten
Benutzeravatar
Dölli
Betreiber
Betreiber
Beiträge: 1908
poszewka na poduszke jedwabna
Registriert: 14.07.2004, 00:23
Kontaktdaten:

URL ohne Browsererweiterung versenden

Beitrag von Dölli »

I have a small block of JavaScript code that I run as a bookmark to accomplish this. It creates and executes a "mailto:" URL that copies the page title to the Subject line and the page URL into the message body. Just copy the code block, edit a bookmark in your toolbar to have this as its "location" and it will open your default email program and create the email message, ready to address and send.

Code: Alles auswählen

javascript:(function(){hed=document.title;content=document.location.href;mailthis='mailto:someone@somewhere.com?subject=' + encodeURI(hed) + '&body=' + encodeURI(content);document.location=mailthis;})();
Quelle: forum.vivaldi.net

Tipp: Wenn man nach "mailto:" someone@somewhere.com entfernt, wird nach dem Öffnen des installierten E-Mail Clients, direkt in die Adressleiste (Empfänger der Mail) gesprungen. Man muss dann also nicht erst mit der Maus in das Adressfeld klicken und die Mailadresse someone@somewhere.com markieren und entfernen.
Owner of Dölli Power Productions (DPP)

Antworten