Skip to content

Instantly share code, notes, and snippets.

@cketti
Created January 7, 2016 07:54
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 cketti/988ff9de4b8460a9232d to your computer and use it in GitHub Desktop.
Save cketti/988ff9de4b8460a9232d to your computer and use it in GitHub Desktop.
Build and launch ACTION_SENDTO Intent using EmailIntentBuilder
boolean success = EmailIntentBuilder.from(activity)
.to("support@example.org")
.cc("developer@example.org")
.subject("Error report")
.body(buildErrorReport())
.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment