Skip to content

Instantly share code, notes, and snippets.

@ookami-kb
Last active December 17, 2015 06:09
Show Gist options
  • Save ookami-kb/5563304 to your computer and use it in GitHub Desktop.
Save ookami-kb/5563304 to your computer and use it in GitHub Desktop.
Open Send email intent in android
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/html");
intent.putExtra(Intent.EXTRA_EMAIL, new String[]{"to@example.com"});
intent.putExtra(Intent.EXTRA_SUBJECT, "the subject");
intent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml("the content"));
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///sdcard/file.ext"));
startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment