Hi,
I have a issue while sending the mail through android.
I am trying
to send the mail at that time it shows
no application can perform this action
see my code as belows :
public void sendEmail(Context context,String subject,String body)
{
final Intent emailIntent = new Intent(Intent.ACTION_SENDTO);
String mailId="
[email protected]";
emailIntent.setType("text/plain");
emailIntent.putExtra(Intent.EXTRA_EMAIL,new String[]{mailId});
emailIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
emailIntent.putExtra(Intent.EXTRA_TEXT,body);
context.startActivity(Intent.createChooser(emailIntent, "Send Mail..."));
}
please reply me .
thanks in advanced .