0

I want to Embed image to E-Mail body.How to do that.I found a lot but still cannot get the solution yet.Is it possible to add an image to E-Mail body?

Biginner
  • 243
  • 1
  • 2
  • 15

1 Answers1

0

use Below code

Intent attachmentIntent = new Intent(Intent.ACTION_SEND);
attachmentIntent.setType("image/*");
attachmentIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("your file address"));
startActivity(attachmentIntent);
TNR
  • 5,839
  • 3
  • 33
  • 62