Skip to content

Instantly share code, notes, and snippets.

@timvisher
Created January 18, 2011 15:27
Show Gist options
  • Save timvisher/784576 to your computer and use it in GitHub Desktop.
Save timvisher/784576 to your computer and use it in GitHub Desktop.
Code for a Remember the Milk bookmarklet for saving the current page via your import address and GMail
url = 'https://mail.google.com/mail?view=cm&tf=0&to=';
url += encodeURIComponent('you@rmilk.com') + '&su=';
if("" != document.getSelection()) {
url += document.getSelection();
}
url += "&body=url:" + encodeURIComponent(document.URL);
window.open(url, 'gmailForm', 'scrollbars=yes,width=680,height=510,top=175,left=200,status=no,resizable=yes');
void(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment