Intent i = new Intent(Intent.ACTION_SEND);
i.putExtra(Intent.EXTRA_EMAIL, new String[]{"[email protected]"});
i.putExtra(Intent.EXTRA_SUBJECT, mySubject);
i.putExtra(Intent.EXTRA_TEXT, myBodyText);
startActivity(i);have fun. On Sep 3, 9:16 pm, rooster 808 <[email protected]> wrote: > I've been trying to do the following: > > A user is viewing content/page on my View/Activity, and I have an > email button, they select "email" and popup a prefilled in email/ > subject asking for the to: address....or some way to launch teh > default email client with a pre-composed email awaiting the sender to > be filled in. . . .ala, "check out this link/content'.... > > Possible? I can see how to do a mailto:// link, but trying to leverage > the built-in contacts and email app, but to compose and stuff the > email contents with contents. > > Thanks, > Rich --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

