Skip to content

Instantly share code, notes, and snippets.

@a-v-ebrahimi
Created March 10, 2012 02:50
Show Gist options
  • Save a-v-ebrahimi/2009808 to your computer and use it in GitHub Desktop.
Save a-v-ebrahimi/2009808 to your computer and use it in GitHub Desktop.
android : Send email
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("plain/text");
intent.putExtra(Intent.EXTRA_EMAIL,new String[] { "address@example.com" });
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