Skip to content

Instantly share code, notes, and snippets.

@zhanghuabin
Created March 21, 2014 06:46
Show Gist options
  • Save zhanghuabin/9680887 to your computer and use it in GitHub Desktop.
Save zhanghuabin/9680887 to your computer and use it in GitHub Desktop.
Send email with specific subject and content
var msg = {
subject : "Say Hi~",
body : "blablabla..."
};
window.location = "mailto:" + MyApp.User.Email + "?" + Ext.urlEncode(msg);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment