Hello,
I am using this code to send a mail.
final Intent mail_Intent=new Intent(Intent.ACTION_SEND);
mail_Intent.setType("plain/text");
mail_Intent.putExtra(Intent.EXTRA_EMAIL,new String[]{toText.getText().toString()}); mail_Intent.putExtra(Intent.EXTRA_SUBJECT,subjectText.getText().toString()); mail_Intent.putExtra(Intent.EXTRA_TEXT,bodyText.getText().toString());
Intent i=Intent.createChooser(mail_Intent, "Send Mail");
startActivity(i);
But on the following screen i get the default android API.I do not want that screen to popup. Is there any other way where i can silently send the mail.
Any help is appreciated. Thanks in advance..