Possible Duplicate:
How to send email in Android ?
How to embeded the native email application within android .In that i need 3 buttons SEND,SAVE AS DRAFT,DISCARD with default functionality and TO also auto populate email adresses.Please help me.
Intent mailIntent = new Intent(android.content.Intent.ACTION_SEND);
Intent mailIntent = new Intent(android.content.Intent.ACTION_SEND);
mailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, "To");
mailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,"Subject");
mailIntent.setType("text/plain");
mailIntent.putExtra(android.content.Intent.EXTRA_TEXT, mailText.toString());
startActivity(Intent.createChooser(mailIntent, "Compose Mail"));
it i take this code the Send button appeares beside Body.but I need the buttons(3) below the Body(Compose).![alt text][1]
But I need like this
![alt text][2]