ACTION_SEND force sending with email
android, android-intent, email
Solution
Try to setType `message/rfc822` instead of `text/plain`
Problem
every time i create an action for sending an email from my app, it prompts to many options including a QR client... Is there a way to force sending via email clients only? Code for sending the email ``` String rec[] = { owner.email }; i = new Intent(Intent.ACTION_SEND); i.setType("text/plain"); i.putExtra(android.content.Intent.EXTRA_EMAIL, rec); i.putExtra(android.content.Intent.EXTRA_SUBJECT, "RE: " + desc); i.putExtra(android.content.Intent.EXTRA_TEXT, "\n\n\nSent from Mojo for Android"); startActivity(i); ``` Screenshot for what happens when I launch this