enter image description hereI am not able to pre fill the TO field in Email client to the "to" address mentioned in the extras here:

EmailImage.setOnClickListener(new OnClickListener() {  
            @Override  
            public void onClick(View v) {  
                 // TODO Auto-generated method stub  
                Intent it = new Intent(Intent.ACTION_SEND_MULTIPLE);   
                it.putExtra(Intent.EXTRA_EMAIL, "toaddress@gmail.com");   
                it.putExtra(Intent.EXTRA_SUBJECT, "Regarding Policy Info");  
                it.putExtra(Intent.EXTRA_TEXT, "When is my next Premium due");  
                //it.setType("text/plain");   
                it.setType("message/rfc822");  
                startActivity(it);   
            }  
        });  

What is the problem?

Thanks
Sneha

link|improve this question

56% accept rate
would you mind posting your working solution? (I'm facing the same issue, but I do have put the address in an array already...still empty "TO field") – vaiomike Feb 16 at 21:13
feedback

4 Answers

up vote 0 down vote accepted

You need to put the address in an array:

it.putExtra(Intent.EXTRA_EMAIL, new String[] {"toaddress@gmail.com"});

See here.

link|improve this answer
what did it take to work now for you? (assuming that u provided a string array for recipient before?). maybe u can post the final working sample code!? thx. – vaiomike Feb 16 at 14:32
@vaiomike Didn't understand the question. – Binyamin Sharet Feb 16 at 14:33
My question was targeted @sneha, whether he could post his working solution. (I have the same problem, although I put the address in an array) – vaiomike Feb 16 at 19:17
@vaiomike - so post the comment under his question, so he will be notified. – Binyamin Sharet Feb 16 at 19:28
sry, my bad. thought he's notified since he has accepted this as the solution. – vaiomike Feb 16 at 21:10
feedback

I've got something like this and its works:

            Intent intent = new Intent(Intent.ACTION_SEND);
            intent.setType("plain/text");
            intent.putExtra(Intent.EXTRA_EMAIL, new String[] { "some@email.address" });
            intent.putExtra(Intent.EXTRA_SUBJECT, "subject");
            intent.putExtra(Intent.EXTRA_TEXT, "mail body");
            startActivity(Intent.createChooser(intent, ""));
link|improve this answer
both of these did not work for me – Sneha Feb 13 at 12:12
did you put identical code like above ? – goodm Feb 13 at 13:16
experiencing the same problems (using your exact same code above); TO filed just remains empty :-( – vaiomike Feb 15 at 19:56
feedback

When using ACTION_SEND_MULTIPLE,

You have to provide an array of String for Intent.EXTRA_EMAIL Binyamin Sharet shown you.

If the requirement is to provide only one Address then use Intent.ACTION_SEND.

link|improve this answer
feedback

Try this

Intent sendIntent = new Intent(Intent.ACTION_SEND);
                        sendIntent.putExtra(Intent.EXTRA_EMAIL,new String[]{"","your email"});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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