I am sending mms via android intent. I am adding the code. Please review
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(intent.EXTRA_TEXT, "Test message");
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File("/storage/emulated/0/testmessage.jpg")));
intent.setType("image/jpeg");
startActivity(intent);
My problem is, How we can add recipients? I am trying this in my code
intent.putExtra("address", "045263299");
When i add this line, the number will show but the image and text will be disappear. I want to add image, text and phone number and send mms through intent. Thanks