Skip to content

Instantly share code, notes, and snippets.

@clarkli86
Created September 19, 2014 13:29
Show Gist options
  • Select an option

  • Save clarkli86/98a80cadaa8fae56225b to your computer and use it in GitHub Desktop.

Select an option

Save clarkli86/98a80cadaa8fae56225b to your computer and use it in GitHub Desktop.
Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(
"mailto","[email protected]", 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