1Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
2String[] recipients = new String[]{"EMAILADRESSE", "",};
3emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, recipients);
4emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "BETREFF");
5emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "VORDEFINIERTER TEXT");
6emailIntent.setType("text/plain");
7startActivity(Intent.createChooser(emailIntent, "Aktion durchführen mit:"));
2String[] recipients = new String[]{"EMAILADRESSE", "",};
3emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, recipients);
4emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "BETREFF");
5emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "VORDEFINIERTER TEXT");
6emailIntent.setType("text/plain");
7startActivity(Intent.createChooser(emailIntent, "Aktion durchführen mit:"));
-----
Grüße Alexander
