Skip to content

Instantly share code, notes, and snippets.

@akbarsha03
Created August 8, 2014 05:34
Show Gist options
  • Save akbarsha03/f98772cd551b63f5cd49 to your computer and use it in GitHub Desktop.
Save akbarsha03/f98772cd551b63f5cd49 to your computer and use it in GitHub Desktop.
Send email
Intent intentEmail = new Intent(Intent.ACTION_SEND);
intentEmail.putExtra(Intent.EXTRA_EMAIL, new String[]{"[email protected]"});
intentEmail.putExtra(Intent.EXTRA_SUBJECT, "your subject");
intentEmail.putExtra(Intent.EXTRA_TEXT, "message body");
intentEmail.setType("message/rfc822");
startActivity(Intent.createChooser(intentEmail, "Choose an email provider :"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment