Created
May 26, 2017 19:34
-
-
Save akbarsha03/e1d45ea8adf8b5998da3a27488bcf5d6 to your computer and use it in GitHub Desktop.
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
val intent = Intent(Intent.ACTION_SEND).apply { | |
type = "text/plain" | |
putExtra(Intent.EXTRA_EMAIL, "[email protected]") | |
putExtra(Intent.EXTRA_EMAIL, "[email protected]") | |
putExtra(Intent.EXTRA_SUBJECT, "Subject") | |
putExtra(Intent.EXTRA_TEXT, "I'm email body.") | |
} | |
startActivity(intent) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment