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 A. Damiean
  • 38,480
  • 19
  • 92
  • 99
Charles Mosndup
  • 505
  • 5
  • 15

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,657
  • 1
  • 16
  • 28