Trying to attach a file from SD Card to email

Also getting the same problem Code: Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType(“image/jpeg”); emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] {“[email protected]”}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, “Test Subject”); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, “go on read the emails”); Log.v(getClass().getSimpleName(), “sPhotoUri=” + Uri.parse(“file:/”+ sPhotoFileName)); emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(“file:/”+ sPhotoFileName)); startActivity(Intent.createChooser(emailIntent, “Send mail…”)); From adb logcat: V/DumbDumpersMain( 3972): sPhotoUri=file://sdcard/DumbDumpers/DumbDumper.jpg I/ActivityManager( 56): Starting activity: Intent { action=android.intent.action.CHOOSER comp={android/com.android.internal.app.ChooserActivity} (has extras) } I/ActivityManager( 56): … Read more