views:

79

answers:

1

I am trying to make a mail application through apache james, but I could not really get all the things, please give suggestions how to use it. MOreover, I could not figure it how to use jsp and servlet for james. Please help.

+1  A: 

According to the comments there are two actions you want to do:

  • Send emails - quite easy with the JavaMail API
  • Retrieve emails - You can do it with the JavaMail API using either IMAP or POP3. Set A scheduler to trigger the retrieval. (either Quartz. cron job + servlet, or perhaps even the Java timer will do)
David Rabinowitz
Its very help full thank you David.
Ryan