Send email with attachment via intent

Tricky to find, simple solution:

File file = new File(path, filename);
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.setType("image/jpeg");
sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Photo");
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
startActivity(Intent.createChooser(sendIntent, "Email:"));
FacebookGoogle BookmarksTwitterFriendFeedGoogle GmailBlogger PostGoogle ReaderHotmailWordPressShare

Related posts:

  1. Let others start your android app
  2. Simple pattern for opening an Android Activity
  3. Android: Get account email
  4. Playing with StatSVN
  5. Check if device has Android Market
Leave a Comment