Intent intent = new Intent(Intent.ACTION_SEND); intent.setType(\"text/html\"); intent.putExtra(Intent.EXTRA_EMAIL, \"emailaddress@emailaddress.com\"); intent.putExtr
This works for me perfectly fine:
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("mailto:" + address)); startActivity(Intent.createChooser(intent, "E-mail"));