Saturday, 26 September 2015

email

Sending email from android
using android email Intent

Intent emailIntent= new Intent(android.content.Intent,ACTION_SEND);
emailIntent.putExtra(messsage,value);
emailIntent.putExtra(android.content.Intent.Extra_EMAIL, String array value of email address(emailAdress));//adding email array

//adding subject
emailIntent.putExtra(android.content.Intent.Extra_SUBJECT, "this is my subject area");

//adding message
emailIntent.putExtra(android.content.Intent.Extra_TEXT, message);

//we can also setup text as plain type in case we are using encoding as /n and all
emailIntent.setType("plain/text");

finally start the intent
startActivity(emailIntent);

No comments:

Post a Comment