How can i send an image via SMS/MMS directly from the uri
I found this code, but it suggests an app to send the MMS instead of directly sending it
val sendIntent = Intent(Intent.ACTION_SEND)
sendIntent.putExtra("sms_body", "some text");
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(url));
sendIntent.setType("image/png");
New contributor
Ryfter is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.