Skip to content Skip to sidebar Skip to footer

How To Attach Bitmap To Email Android

I have a bitmap that I have saved in the external storage. I already have a method that loads and returns the bitmap. My question is, how do I attach this image to an email Intent.

Solution 1:

try this for Attach Image with Email

Fetch Image From SdCard

Stringpath= Environment.getExternalStorageDirectory().toString();     
Filefile=newFile(path,"YourImageName.JPEG");
UripngUri= Uri.fromFile(file);

Email Intent

IntentemailIntent=newIntent(android.content.Intent.ACTION_SEND);
emailIntent.setType("text/html");
emailIntent.putExtra(android.content.Intent.EXTRA_STREAM, pngUri);

Post a Comment for "How To Attach Bitmap To Email Android"