public void send(View v)
{
Intent i=new Intent(Intent.ACTION_SEND);
i.putExtra(Intent.EXTRA_EMAIL,"vadivelan.1205237@srec.ac.in");
i.putExtra(Intent.EXTRA_SUBJECT,"EMAIL SUBJECT");
i.putExtra(Intent.EXTRA_TEXT,"EMAIL msg");
i.setType("message/rfc822");
startActivity(Intent.createChooser(i,"MAIL"));
Toast.makeText(this.getApplicationContext(),"Sending",Toast.LENGTH_LONG);
}
No comments:
Post a Comment