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?
Asked
Active
Viewed 584 times
0
-
Possible duplicate : http://stackoverflow.com/questions/3148486/embedding-image-in-email-in-android – Nirav Ranpara Dec 07 '12 at 12:53
-
see this: http://stackoverflow.com/a/13564225/1405120 – ThePCWizard Dec 07 '12 at 13:18
1 Answers
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