Showing posts with label Sent Email with Attachment using Android Intent.. Show all posts
Showing posts with label Sent Email with Attachment using Android Intent.. Show all posts

Friday, May 25, 2012

Start Email-Activity with Preset Data (via Intents)

Hurry - Plan a Trip for Father's Day and Save up to 65%! Compare Now!

/* Create the Intent */
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
/* Fill it with Data */
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");
/* Send it off to the Activity-Chooser */
context.startActivity(Intent.createChooser(emailIntent, "Send mail..."));