0

In my application I am downloading an image from server.Now I want to send this image via MMS & Email.

How can I do that.

Please help

Arun Badole
  • 10,977
  • 19
  • 67
  • 96

1 Answers1

1

First save the image in the SD Card and then use the following code to open the MMS application for sending the saved image:

Intent sendIntent = new Intent(Intent.ACTION_SEND); 
sendIntent.putExtra("sms_body", "some text"); 
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(url));//put the uri of your image here
sendIntent.setType("image/png");

read this link for more info.

Read this link for sending MMS programmatically.

Community
  • 1
  • 1
Praful Bhatnagar
  • 7,425
  • 2
  • 36
  • 44
  • Hi Praful I am facing an issue.Please check http://stackoverflow.com/questions/12615136/issue-on-sending-mms-in-android-version-4-0-3 – Arun Badole Sep 27 '12 at 06:30