• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Reading Mail with Wrong Subjects

 
Ranch Hand
Posts: 61
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I am facing a problem with my JavaMail, My program reads the MailMessages from a E-mail id (Lotus Notes) and using IMAP protocol. This program is a Email Listener which reads email and process the data.

If I have 3 mails in my inbox (which is LotusNotes Supported) as follows.

Email 1:
*******
Subject: Ayyanar1
Body: This is first Message

Email 2:
*******
Subject: Ayyanar2
Body: This is Second Message

Email 3:
*******
Subject: Ayyanar3
Body: This is Third Message

When the EmailListener reads these messages to process them, it get the Message as follows (The Message Objects). The Issue is that the Subject of the Subsequent messages uses the previous messages's subject. Only the Subject is getting changed

Email 1:
*******
Subject: Ayyanar1
Body: This is first Message

Email 2:
*******
Subject: Ayyanar1
Body: This is Second Message

Email 3:
*******
Subject: Ayyanar2
Body: This is Third Message


I need Help in fixing this issue. Thanks in Advance,
Inr
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Seeing the code that produces this output would definitely help us help you.
reply
    Bookmark Topic Watch Topic
  • New Topic