I retrieve message headers under WWIP 4.68 using oPop.GetMessageHeader, I want to get the message subject, so I look in oPop.aMessages[1].cSubject to get the subject. However, the subject is not there. In one case, the text in the cSubject property was: "Date:X-Priority:X-MSMail-Priority:X-Mailer:X-MimeOLE:X-ELNK-Trace:X-Originating-IP;"
I found the subject in the property cFullText, between the strings <CHR(10) + CHR(13)> + "Subject: " and the next <CHR(10) + CHR(13)>. I can parse the subject from this string.
My questions are:
1. why doesn't the message subject show up in the cSubject property?
2. can I expect to find the subject in the cFullText property and can I parse it as I've described above? (Will this always work?, or is this an undocumented behavior that I can't count on?)
Thanks, Chaim