I am experiecing "This action is not currrently supported" error condition when I do the following? I am using 2.1. Anybody knows what I am doing wrong here?
public void onClick(View v) { Intent intent = new Intent(Intent.ACTION_SENDTO); Uri uri = Uri.parse("mailto:[email protected]"); intent.setData(uri); intent.putExtra("subject", "my subject"); intent.putExtra("body", "my message"); startActivity(intent); }