Hello,
I'd like to know if it's possible to send an email from the emulator
(i'm using cupcake).
I'm using something like:

    Intent sendIntent = new Intent(Intent.ACTION_SEND);
    sendIntent.putExtra(Intent.EXTRA_EMAIL, to);
    sendIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
    sendIntent.putExtra(Intent.EXTRA_TEXT,body);
    sendIntent.setType("text/plain");
    startActivity(Intent.createChooser(sendIntent, "MySendMail"))

but the thing I do not know if an email client is necessary on the
emulator (was thinking of k9) or if by default an email client is
already present. In this later case, how do I configure my account ?
Thanks a lot,
Luc
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to