Skip to content

Instantly share code, notes, and snippets.

@git2358
Forked from nrn/mailTo.js
Created April 9, 2019 02:29
Show Gist options
  • Select an option

  • Save git2358/1a708b1c8c1043f8a035dfe4722a6d8b to your computer and use it in GitHub Desktop.

Select an option

Save git2358/1a708b1c8c1043f8a035dfe4722a6d8b to your computer and use it in GitHub Desktop.
Bookmarklet to mail a link/selected text
javascript:(function () {
var selected = getSelection().toString();
if (selected !== "") selected = '"...\n'+selected+'\n..."\n';
location.href = 'mailto:?SUBJECT='+encodeURIComponent(document.title)+'&BODY='+encodeURIComponent('\n'+location.href+'\n'+selected);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment