Send URL by Email with Default Mailer
-
"right-click" or otherwise , send url by email.
Email program being whatever is the default in the o.s. or manual override.
Subject and url already filled in email message. -
Easily done: use Ctrl-S to save the page, then send as an attachment. That's how I do it, anyway. I don't think enough people know about saving web pages with Ctrl-S, as .mhtml files.
If I've misunderstood you, I apologize.
-
I use the extension "Send URL". It seems to do what you would like.
https://chrome.google.com/webstore/detail/send-url/fmanefafgomooabofffoidipbfdbjilh?utm_source=chrome-app-launcher-info-dialog -
You could also install the "Shortcuts for Google" extension and use the "Mail This" service with this extension if you are a GMail user.
-
@fofo In Opera 12.18, Send Link by Email is on the page context menu.
If any text is selected on the page, that is copied to the email in Opera's email client, which is my default, together with the URL of the active tab.
-
@Pesala Both already present.
-
@Folgore101 Where; in the extension? They're not yet in Vivaldi.
-
@Pesala In the Soprano version. It could be labeled as "IN PROGRESS".
-
@Gwen-Dragon Should you mark as done?
-
I rather like it not being mark as done since the request was to be able to use any email program, not only the one integrated in vivaldi.
-
I would like it to send to my default eMail program, not Vivaldi's (unless I specifically ask it to).
Here is what Firefox does. And it is EASY to find too.
-
@toddandmargo That is planned and will come.
-
HI DoctorG,
Very sweet!
"Send Link by Mail" and "Send URL by Mail" are synonyms and will confuse folks. Hopefully, the planners will change the wording to remove the confusion.
-T
-
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.
javascript:(function(){hed=document.title;content=document.location.href;mailthis='mailto:[email protected]?subject=' + encodeURI(hed) + '&body=' + encodeURI(content);document.location=mailthis;})();
-
@joeduffus I created some similar code at https://web.archive.org/web/20100801085321/http://shadow2531.com/opera/testcases/mailto/modern_mailto_uri_scheme.html#send_link a while back. (Not in Javascript URL code there though.)
-
@joeduffus I tried it, but it wanted to use the Vivaldi email system, which I don't want. I have used Fastmail for years and years and want to continue using it.
Firefox has a General setting: Applications
Choose how Firefox handles the files you download from the web or the applications you use while browsing.This lets you specify how you want "mailto" to be handled (where I have Fastmail specified - the properties are https://www.fastmail.com/action/compose/?mailto=%s)
Firefox also has, as previously mentioned, a "File > Email link" action.
This is what, I believe, people are wanting.
-
Not sure of your OS, but in Windows you can set a default handler for "mailto:" tags that works system-wide, which is what I do and am used to.
-
Some of these posts imply a solution using the Vivaldi email client, I have used Fastmail for years and years and want to continue using it.
Firefox has a General setting: Applications
Choose how Firefox handles the files you download from the web or the applications you use while browsing.Among the "Applications" mailto is listed (where I have Fastmail specified - its properties are https://www.fastmail.com/action/compose/?mailto=%s)
Firefox also has, as previously mentioned, a "File > Email link" action.
These are what, I believe, people are wanting, both a way to email a link, using whatever their prefered email client is, and to be able click on a mailto link and send a message.
-
@joeduffus said in Send URL by Email:
message
Very nice! Is there a way to include selected text in the email body?
Thanks.
-
@paul1149 Might be a way to add that if you know enough JS to grab selected text and concatenate it to the value being assigned to 'body'. As it is, it just grabs the URL and assigns that to 'body'.