Skip to content

Instantly share code, notes, and snippets.

@ookami-kb
Last active December 17, 2015 08:09
Show Gist options
  • Save ookami-kb/5578151 to your computer and use it in GitHub Desktop.
Save ookami-kb/5578151 to your computer and use it in GitHub Desktop.
Intent for sending email in Android
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