Created
March 28, 2017 06:53
-
-
Save rmeekers/bb02842b871a0c67b6502f617b9be3bf to your computer and use it in GitHub Desktop.
Compose new Gmail Bookmarklet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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