1

I would like my email to be sent without having the email client ot open on the Android screen.

my code is standard:

final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("plain/text");
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{addresses});
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject);
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, message);
startActivity(Intent.createChooser(emailIntent, "Send mail..."));

How to? Thanks. Charles.

Octavian Helm
  • 39,405
  • 19
  • 98
  • 102
Charles Mosndup
  • 600
  • 6
  • 19

1 Answers1

1

Refer This. might be helpful

It will open up email application in real device. In emulator it doesn't work, many people have faced this & found this working.

-Thanks

Piyush Patel
  • 1,765
  • 1
  • 16
  • 29