Search code examples
androidemailmms

How to send an downloaded image via MMS in Android


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


Solution

  • 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.