Seite 1 von 1

URL ohne Browsererweiterung versenden

Verfasst: 21.09.2021, 19:16
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.