Re: [android-developers] Looking for API to gain access to my email

2013-12-11 Thread Daniel Chacon
Can anyone help with this.. I was looking lastnight and found the android.intent.action.delete but not sure that will allow me access to the "trash" folder on the phone. Also found android.content.intent.action delete which may get me close, but how would I find the URI of the trash folder? On Tue

Re: [android-developers] Looking for API to gain access to my email

2013-04-23 Thread Daniel Chacon
Well the thing is that, these message reside on my phone and no longer on the server. Im using the standard "Email" program on the android phone. Connecting to my POP3 server, anything i send only shows on my phone sent folder. Anything i delete is removed from the server, but is moved to the "Tras

Re: [android-developers] Looking for API to gain access to my email

2013-04-23 Thread bob
If your e-mail account uses IMAP, the messages don't *live* on your phone. They actually *live* on a server. So, you would want to do this by building an *IMAP client*, which talks to the server where your messages really live. Thanks. On Tuesday, April 23, 2013 9:16:09 AM UTC-5, Dan C

Re: [android-developers] Looking for API to gain access to my email

2013-04-23 Thread Daniel Chacon
Kris, thank you. So doing a search for "Android Nework API" i found this link http://developer.android.com/training/basics/network-ops/index.html Is this the route to go? Just want to make sure im going down the right path.. For testing and learning, i just want to somehow access the email trash

Re: [android-developers] Looking for API to gain access to my email

2013-04-22 Thread Kristopher Micinski
I don't know of any app which provides extensible functionality. Instead, you need to find some API which talks to your email via network to handle this.. Kris On Mon, Apr 22, 2013 at 2:54 PM, Daniel Chacon wrote: > I have the Galaxy Nexus running 4.2.2 > > > On Fri, Apr 19, 2013 at 10:49 PM, Da

Re: [android-developers] Looking for API to gain access to my email

2013-04-22 Thread Daniel Chacon
I have the Galaxy Nexus running 4.2.2 On Fri, Apr 19, 2013 at 10:49 PM, Dan Cha wrote: > Im trying to build an app that can connect to my email client on my phone. > Im using the email client that came with the phone, so whatever that is. > > Is it possible to access that from another app? > >

[android-developers] Looking for API to gain access to my email

2013-04-22 Thread Dan Cha
Im trying to build an app that can connect to my email client on my phone. Im using the email client that came with the phone, so whatever that is. Is it possible to access that from another app? I would like to gain access to the individual folders and do the normal delete, move and such..