Jul
10
Send email with attachment via intent
Leave a comment »
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:"));
Related posts:

