TagSend mail with image

Send Mail with Image

S

How to send the image to the mail in android for these you can refer the following code Getting image from Web InputStream is = (InputStream) new URL("Image URL").getContent(); // storing image from stream Drawable drawable = Drawable.createFromStream(is, "srcName"); is.close(); // converting drawable object to Bitmap to store in content providers of Media Bitmap bitmap = ((BitmapDrawable)...

Category