Skip to content

Instantly share code, notes, and snippets.

@cketti
Created January 7, 2016 07:53
Show Gist options
  • Select an option

  • Save cketti/f4161c07ea9b7ae66f0d to your computer and use it in GitHub Desktop.

Select an option

Save cketti/f4161c07ea9b7ae66f0d to your computer and use it in GitHub Desktop.
Build ACTION_SENDTO Intent using EmailIntentBuilder
Intent emailIntent = EmailIntentBuilder.from(context)
.to("developer@example.org")
.subject("Feedback for MyAwesomeApp")
.build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment