14Dec/081
Sending email from Android
Sending an email is a very basic functionality (for some applications anyway). Android makes it very easy to do this. All you have to do is create a new intent, setup the content of the email and send it.
Intent in = new Intent(Intent.ACTION_SEND);
in.putExtra(Intent.EXTRA_TEXT, "this is the body of the email");
in.putExtra(Intent.EXTRA_SUBJECT, "Subject");
in.setType("message/rfc822");
startActivity(Intent.createChooser(in, "Title:"));
January 5th, 2009 - 06:23
but this code not run
it Shows Error “No Application perform this action”
i tried to run this code on xp operating System but it shows error
so tell me any other setting are required or what is problem