Skip to content

Instantly share code, notes, and snippets.

@mcatta
Created May 13, 2013 07:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcatta/5566712 to your computer and use it in GitHub Desktop.
Save mcatta/5566712 to your computer and use it in GitHub Desktop.
Email intent send
Intent emailIntent = new Intent(Intent.ACTION_SENDTO,
Uri.fromParts("mailto","abc@gmail.com", null));
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "EXTRA_SUBJECT");
startActivity(Intent.createChooser(emailIntent, "Send email..."));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment