Wednesday, 17 June 2015

APP REDIRECT TO INBUILT-EMAIL APP


//No need of any permissions for this

          Intent Email=new Intent(android.content.Intent.ACTION_SEND);

//Type the required email in {} i.e {"hello@gmail.com","hiii@gmail.com"}    
           Email.putExtra(android.content.Intent.EXTRA_EMAIL,new String[]={"email@gmail.com"});
   
   
                   //Put the subject here.This is not compulsory
    Email.putExtra(android.content.Intent.EXTRA_SUBJECT,"Problem with app");
   
             Email.setType("plain/text");
   
            //The Required text here  
              Email.putExtra(android.content.Intent.EXTRA_TEXT,"Enjoy");


No comments:

Post a Comment