Dupliquer possible:
Email de la mémoire interneL'e-mail est en cours de réception par le destinataire, mais sans la pièce jointe. Voici le code, tout expert sait où je me suis trompé?
Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/plain"); intent.putExtra(Intent.EXTRA_EMAIL, new String[] {"email@example.com"}); intent.putExtra(Intent.EXTRA_SUBJECT, "subject here"); intent.putExtra(Intent.EXTRA_TEXT, "body text"); File root = Environment.getExternalStorageDirectory(); File file = new File(root, xmlFilename); if (!file.exists() || !file.canRead()) { Toast.makeText(this, "Attachment Error", Toast.LENGTH_SHORT).show(); finish(); return; } Uri uri = Uri.parse("file://" + file); intent.putExtra(Intent.EXTRA_STREAM, uri); startActivity(Intent.createChooser(intent, "Send email..."));
Je ne reçois aucun message de pain grillé. Merci.
Réponses
Trop de publicités?
CommonsWare
Points
402670
Femi
Points
42054