Skip to content

Instantly share code, notes, and snippets.

@Velmm
Created December 19, 2017 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Velmm/4a9b38a2831c9c58a0295b4c54405af1 to your computer and use it in GitHub Desktop.
Save Velmm/4a9b38a2831c9c58a0295b4c54405af1 to your computer and use it in GitHub Desktop.
Intent email = new Intent(Intent.ACTION_SEND);
email.putExtra(Intent.EXTRA_EMAIL, new String[]{"velmurugan@androidtoppers.com"});
email.putExtra(Intent.EXTRA_SUBJECT, "Hi");
email.putExtra(Intent.EXTRA_TEXT, "Hi,This is Test");
email.setType("text/plain");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment