Skip to content

Instantly share code, notes, and snippets.

@italoveloso
Created March 15, 2013 19:59
Show Gist options
  • Save italoveloso/5172688 to your computer and use it in GitHub Desktop.
Save italoveloso/5172688 to your computer and use it in GitHub Desktop.
Enviar por e-mail simples e prático.
$('#enviaremail').on('click',function (e) {
var link = 'mailto:?body='+document.URL+'&subject='+document.title;
window.open(link, 'Enviar notícia por e-mail', 'width=600,height=600');
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment