I want to fetch the emails of the account configured on my phone.

How can I do that? Are the emails stored in a database or they are fetched at runtime?

link|improve this question

It is undocumented but it is working fine. – Vineet Shukla Sep 13 '11 at 11:40
thks and can i get all the specification from the phone or i hava to ask from the user,the specification for emial-of-other account – Dennis Sep 13 '11 at 11:45
you need to ask credentials from the user... – Vineet Shukla Sep 13 '11 at 11:46
like port and everything?isn't that stored anywhere when the user configures it? – Dennis Sep 13 '11 at 11:49
you can use port as it is to fetch emails. The only thing you will need is to get username and password from the user. The code you see is the running code... – Vineet Shukla Sep 13 '11 at 11:50
show 2 more comments
feedback

1 Answer

You need to use the GET_ACCOUNTS permission and then run this code:

Account[] accounts = AccountManager.get(this).getAccounts();
for (Account account : accounts) {
   // Check here for the type and name to find the email records.
}
link|improve this answer
after getting the accounts what should i do fetch the mails from the configured account? – Dennis Sep 13 '11 at 11:22
You either loop on the accounts to find the email accounts via regex or if you want specific accounts you can call the AccountManager.get(this).getAccountsByType(String type) method instead. For example: AccountManager.get(this).getAccountsByType("com.google") will return the gmail accounts. – IncrediApp Sep 13 '11 at 11:26
i think ur not getting my question – Dennis Sep 13 '11 at 11:29
I think you're not getting my answer... :) Run these lines to see what you get. I believe the first element in the array you will get for calling AccountManager.get(this).getAccountsByType("com.google"); will be your "account configured on your phone" – IncrediApp Sep 13 '11 at 11:32
yes i will..but i want the emails in that account – Dennis Sep 13 '11 at 11:33
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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