Showing posts with label Email. Show all posts
Showing posts with label Email. Show all posts

Tuesday, January 29, 2013

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
                                      }