The emulator does not come with Google apps pre-installed. One of these apps is GMail which is directly "opened" by your tutorial code. Try to finda different tutorial <http://blog.iangclifton.com/2010/05/17/sending-html-email-with-android-intent/>about sending emails on Android.
Basically you need to create an ACTION_SEND intent with mime type "text/plain" (or "text/html" if it is an HTML email). Then just launch that intent with startActivity(intent) so the user can pick his/her favorite email app for handling that action. -- 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

