Hi,

I am trying to send the email from the android application.
My code to send the email is as follows:

Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "some text");
sendIntent.putExtra(Intent.EXTRA_SUBJECT, "some subject");
sendIntent.setType("message/rfc822");
startActivity(Intent.createChooser(sendIntent, "Choose"));

But I am getting message as 'No application can handle this request'.

I have tried every thing. Actually I want to send an audio file in the
email. But event the simple text message sending it not working. Does
this functionality work on the emulator? or to run this real device it
needed.

Please help.

Regards,
Prashant
--~--~---------~--~----~------------~-------~--~----~
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