Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Já enviar e-mail com e-mail embutido mais assunto mais mensagem sketchware
- Intent intent = new Intent(Intent.ACTION_SEND);
- intent.setType("plain/text");
- intent.putExtra(Intent.EXTRA_EMAIL, new String[]{"brunokayte@gmail.com"});
- intent.putExtra(Intent.EXTRA_SUBJECT, "Olá, estamos com algumas dúvidas");
- intent.putExtra(Intent.EXTRA_TEXT, "Olá, gostaríamos de saber mais sobre o seu produto");
- startActivity(Intent.createChooser(intent, "Enviar email através de..."));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement