Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I m using Intent.ACTION_SEND to send mail.

But when i call the intent its showing message,mail, Bluetooth.

I want only Mail How to do this.

share|improve this question

4 Answers

up vote 9 down vote accepted
Intent email = new Intent(android.content.Intent.ACTION_SEND);  
                    email.setType("application/octet-stream");  

Thanks.......
try this....

share|improve this answer
1  
WiFi and Bluetooth still visible. – efeyc Apr 3 '12 at 11:44

@Ganapathy:try this code for display gmail

Intent gmail = new Intent(Intent.ACTION_VIEW);
                gmail.setClassName("com.google.android.gm","com.google.android.gm.ComposeActivityGmail");
                gmail.putExtra(Intent.EXTRA_EMAIL, new String[] { "jckdsilva@gmail.com" });
                gmail.setData(Uri.parse("jckdsilva@gmail.com"));
                gmail.putExtra(Intent.EXTRA_SUBJECT, "enter something");
                gmail.setType("plain/text");
                gmail.putExtra(Intent.EXTRA_TEXT, "hi android jack!");
                startActivity(gmail);
share|improve this answer
+1 ho Thanks dude i will try this one... – Ganapathy Oct 15 '11 at 5:31
@Jack Dsilva very good example – Jack Dsilva Dec 30 '11 at 6:06
3  
Be aware, this will only work if the device has Gmail installed. On non-Google devices (like, say, the Kindle Fire, which has its own e-mail client) it will fail. – rnstewart Sep 11 '12 at 18:47

Using message/rfc822 type as pointed here: ACTION_SEND force sending with email solves the issue.

share|improve this answer

First solution: try to be more specific in your Intent parameters. Add a message recipient for instance

emailIntent .putExtra(android.content.Intent.EXTRA_EMAIL, new String[] {"user@example.com"});

Second solution: use the package manager to find all applications capable of sending a message and select the only those you want to use.

share|improve this answer
But i dont want to send email to a specific one that must be selectable by user. – Ganapathy Feb 3 '11 at 7:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.