Sunday 2 November 2014

Android Tutorial 27 : Sending Email In Android

In Android we can send Email  using following Code

                         Intent i = new Intent(Intent.ACTION_SEND);
                                 i.setType("message/rfc822");
                                 i.putExtra(Intent.EXTRA_EMAIL  , new String[]{"recieveremail@gmail.com"});
                                 i.putExtra(Intent.EXTRA_SUBJECT, "Subject of Mail");
                                 i.putExtra(Intent.EXTRA_TEXT   , "The Message Body");
                                 try {
                                           startActivity(Intent.createChooser(i, "Sending mail..."));
                                         
                                   }
                                 finally {
                                     

                                          // Code to execute when unable to send Email
                                      }

No comments:

Post a Comment