I need to send MMS. Into my hero this code looks ugly but works:
Intent sendIntent = new Intent(\"android.intent.action.SEND_MSG\");
sendIntent.putExtra
Have you tried something like this (change to your need and add images etc...):
Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.parse("mmsto:");
intent.putExtra("address", );
intent.putExtra("subject", );
startActivity(intent);
The above is the best I could come up with which works on HTC/Nexus/SE from 1.6 to 2.2.