Skip to content

Instantly share code, notes, and snippets.

@cketti
Created January 7, 2016 07:54
Show Gist options
  • 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("[email protected]")
.cc("[email protected]")
.subject("Error report")
.body(buildErrorReport())
.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment