Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("message/rfc822");
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{getResources().getString(R.string.contactMail) });
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, getString(R.string.mailSubject));
startActivity(Intent.createChooser(emailIntent, getString(R.string.mailSend)));
Esto es todo!
It works!
Roger Sala,
No hay comentarios:
Publicar un comentario