Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to send email using Intent in android

    • 0
    • 5
    • 0
    • 0
    • 1
    • 0
    • 0
    • 1
    • 1.02k
    Comment on it

    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)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: