Android Question Send MMS programmatically

Eduardo Bardales

Member
Licensed User
Longtime User
Hi friends, How I can convert the next code a B4A?.

File f=newFile(Environment.getExternalStorageDirectory().getAbsolutePath()+"/DCIM/Camera/"+img_name);
Intent sendIntent =newIntent(Intent.ACTION_SEND);
sendIntent.putExtra("","");
sendIntent.putExtra(Intent.EXTRA_STREAM,Uri.fromFile(f));
sendIntent.setType("image/png");
startActivity(sendIntent);


the link to this code is:http://stackoverflow.com/questions/10833697/send-mms-without-user-interaction-in-android.
I think that maybe run, but really i need send a MMS Message directly without dialog box.
Thanks for your help .
 
Top