Created
January 7, 2016 07:53
-
-
Save cketti/f4161c07ea9b7ae66f0d to your computer and use it in GitHub Desktop.
Build ACTION_SENDTO Intent using EmailIntentBuilder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Intent emailIntent = EmailIntentBuilder.from(context) | |
.to("[email protected]") | |
.subject("Feedback for MyAwesomeApp") | |
.build(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment