Send eMail with Android
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("plain/text");
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{"to@email.com"});
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Text");
context.startActivity(Intent.createChooser(emailIntent, "Send mail..."));
Got anything to say? Go ahead and leave a comment!
Mein Skillset
Kategorien
- Allgemeines (2)
- Android (1)
- Benjamin Mock (9)
- Coding (16)
- JavaScript (1)
- Projekte (2)
- Tipps & Tricks (2)
- Tools (1)
- Wordpress (2)


Posted under: