Can anyone suggest how to add images to the email body? I tried, but did not answer.
Here is my code:
Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.setType("image/jpeg"); sendIntent.putExtra(Intent.EXTRA_EMAIL, new String[] { " gmail@gmail.com " }); sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Photo"); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + _path)); sendIntent.setType("image/png;text/html"); String htmlecode = "<html><b>Bold Text works perfectly</b>" + "<img width='48' height='48' alt='' " + "src='http://upload.wikimedia.org/wikipedia/commons/7/7a/Basketball.png' />" + "</html>"; sendIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(htmlecode, imgGetter, null)); startActivity(Intent.createChooser(sendIntent, "Email:"));
Wrong in this code?
source share