-1

I want email with image which is fatch from drowable in android I show bellow given link but same problem arise: How to add an image in email body

and if I put

email.putExtra(Intent.EXTRA_TEXT,Html.fromHtml("<b>content</b>"+"<img src=\"data:"+getResources().getDrawable(R.drawable.smile)+";base64,#IMAGEDATA#\"‌​>")

and save it it give the Error:

Save Could not be completed
some character can not be mapped using "Cp1252" Character encodding.

please give me the solution, I want send image with mail.

Community
  • 1
  • 1
user1490535
  • 175
  • 1
  • 2
  • 4

1 Answers1

-1

Try this it will really help you:

mail.putExtra(Intent.EXTRA_SUBJECT,  subject.toString()); 
mail.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:"+ file));
chiwangc
  • 3,566
  • 16
  • 26
  • 32
M Singh
  • 41
  • 1
  • 7