This tutorial is about sending the Email from your android code using implicit intents.
Following is the code to send an Email-
Intent emailIntent = new Intent(Intent.ACTION_SENDTO
, Uri.fromParts("mailto", "tarun.joshi@evontech.com", null));
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "Welcome to FindNerd");
emailIntent.putExtra(Intent.EXTRA_TEXT, "Here body of email goes...");
startActivity(Intent.createChooser(emailIntent, "Send email..."));
1 Comment(s)