Ever want an easy way to email a webpage to yourself? Maybe it’s to send it to your task list, or just to share with a co-worker? Of course there are extensions for most browsers to do this, but if you would prefer a bookmarklet that doesn’t require any installation, here’s how to do it. This is the basic link structure…
javascript:document.location='mailto:?subject='+document.title+'&body='+escape(document.location);
Or, for simplicity sake, just drag and drop this link into your bookmarks bar… [Email][1]
Of course you can go wild and start customizing the URL to your hearts content. Set a value after the “mailto:”, or maybe even a CC. For example…
javascript:document.location='mailto:[email protected]?subject='+document.title+'&[email protected]&body='+escape(document.location);[1]: javascript:document.location='mailto:?subject='+document.title+'&body='+escape(document.location);