Skip to content

Instantly share code, notes, and snippets.

@cketti
Last active January 7, 2016 07:50
Show Gist options
  • Select an option

  • Save cketti/51938e906959e66d7d6d to your computer and use it in GitHub Desktop.

Select an option

Save cketti/51938e906959e66d7d6d to your computer and use it in GitHub Desktop.
Simple ACTION_SENDTO Intent creation
Intent emailIntent = new Intent(Intent.ACTION_SENDTO);
emailIntent.setData(Uri.parse("mailto:developer@example.com"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment