Created
March 10, 2012 02:50
-
-
Save a-v-ebrahimi/2009808 to your computer and use it in GitHub Desktop.
android : Send email
This file contains 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 intent = new Intent(Intent.ACTION_SEND); | |
intent.setType("plain/text"); | |
intent.putExtra(Intent.EXTRA_EMAIL,new String[] { "[email protected]" }); | |
intent.putExtra(Intent.EXTRA_SUBJECT, "Subject of the mail"); | |
intent.putExtra(Intent.EXTRA_TEXT, "body of the mail"); | |
startActivity(Intent.createChooser(intent, "Title of the chooser dialog")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment