Skip to content

Instantly share code, notes, and snippets.

@rmeekers
Created March 28, 2017 06:53
Show Gist options
  • Save rmeekers/bb02842b871a0c67b6502f617b9be3bf to your computer and use it in GitHub Desktop.
Save rmeekers/bb02842b871a0c67b6502f617b9be3bf to your computer and use it in GitHub Desktop.
Compose new Gmail Bookmarklet
javascript:
(function() {
var url = 'https://mail.google.com/mail/?view=cm&fs=1';
var emailInput = prompt('E-mail address','');
var subjectInput = prompt('Subject','');
if (emailInput) {
url += '&to=' + escape(emailInput);
}
if (subjectInput) {
url += '&su=' + escape(subjectInput);
}
location = url;
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment