

I.putExtra(Intent.EXTRA_TEXT, "this is just a test") I.putExtra(Intent.EXTRA_SUBJECT, "ORDER SUMMARY FROM COFFEE SHOP") Intent i = new Intent(Intent.ACTION_SEND) String mail_body = "Customer name=" + customer + " Cost" + cost + "\n thank you :)\n have a great day ahead"


when I run the app on lollipop and when the button is clicked the app closes and no effect of intent is seen.ĮditText email = (EditText) findViewById(R.id.email) ĮditText customer = (EditText) findViewById(R.id.customer_name) When a button is clicked the method sendemail() is called.
