I am trying to develop a small application for sending and receiving emails on the Android plataform. Currently i have been using the Javamail api trying to send an email. However i thought that if i implement my app using javamail how am i going to receive an email and get a notification from my app that i have recieved it? Is this having to do with Service and Provder classes found on Android? I am a complete beginner on android.

Also i tried this piece of code found here :

Android Programming - Send mail

with no luck since application does not work.

link|improve this question

Sending and receiving mails are unfortunately two very different things... One thing is a server, and the other a client. This is like writing a web browser or a HTTP server. It's not the same thing. – m0skit0 Nov 4 '11 at 12:47
Yes i know, but how am i going to recieve an email on android? Is there an email class? Because i couldnt find a way. I want to create very simple application like default email one. – Stelios Nov 4 '11 at 12:48
You cannot receive an email since you're not an email server and you don't have a domain, not to talk about DNS server. You maybe mean fetch an email from an email server. For that you need to use POP3/IMAP protocols. Check for a library for that. – m0skit0 Nov 4 '11 at 12:50
Hmm, yes basicaly my problem is how to fetch the data. I know that k9 open source app has that functionality and they provide the ode but since there are over 150 classes i cannot find exaclty where they are fetching the mails. – Stelios Nov 4 '11 at 12:54
As I said, search for POP3/IMAP. – m0skit0 Nov 4 '11 at 12:57
feedback

1 Answer

up vote 2 down vote accepted

JavaMail can also be used to fetch mails from a POP3 server. As an example look at this class: PopMailImporter.java, especially the importMails and importMail function.

link|improve this answer
Soo i can built the email app just by using the Javamail right? – Stelios Nov 4 '11 at 13:09
@Stelios An email app can be anything, but at least I can say that JavaMail make it easy to send mails to an SMTP (more specifically submission) server and receive mails from a POP3 server. – Hontvári József Levente Nov 4 '11 at 13:51
Thank you very much, i am currently looking at the class, but can you help me a bit more with its functionality. I am new to this kind of stuff and i am stucked=/. Thanks in advance. – Stelios Nov 5 '11 at 12:44
@Stelios You are welcome. If you have questions about the example class above then I can help, but I do not know anything about Android. If you have other specific questions I would recommend you to post it in a new question. – Hontvári József Levente Nov 5 '11 at 20:56
Thanks again. Basically i cant really understand importMails(..) method. First it creates the properties object, then the Session; remotehost should be: smtp.gmail.com if i am not mistaken. Then i connect to the server and it then it calls the other method, and so on. This is a bit complicated example and it seems that i miss stuff. If i am able to do it in java then it should not have problem and android aswell. Do you have another more simple example? Thanks again. – Stelios Nov 5 '11 at 22:28
show 7 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.