We are trying to figure out if the emulator supports this.  I have
configured the email application on the emulator and it can send
email.  When it is done in code it constantly gives the "No
applications can perform this action".

     Intent sendIntent = new Intent(Intent.ACTION_SEND);
     sendIntent.putExtra(Intent.EXTRA_EMAIL, to.toArray());
     sendIntent.putExtra(Intent.EXTRA_CC, cc.toArray());
     sendIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
     sendIntent.putExtra(Intent.EXTRA_TEXT, body);
     sendIntent.setType("message/rfc822");
     context.startActivity(Intent.createChooser(sendIntent,
"MailSender"));

Does something need done in the manifest file to enable this?  Help?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to