I have a problem with setting type "message/rfc822" for intent to send e-mail with file attachment on Android emulator
This is the solution. Use the below code, works perfectly...Got the solution after research.... :)
Intent testIntent = new Intent(Intent.ACTION_VIEW);
Uri data = Uri.parse("mailto:?subject=" + "blah blah subject" + "&body=" +
"blah blah body" + "&to=" + "sendme@me.com");
testIntent.setData(data);
startActivity(testIntent);