Does Indy9 have any way to get a specific raw email header (say, "Subject" or "From") which still includes the transfer-encoding (ie: has not been mangled by DecodeHeader on older versions of Delphi with poor Unicode support), or would I have to parse the entire email header manually to extract this information?

link|improve this question

feedback

2 Answers

The TIdMessage.RawHeaders property is what you are looking for, eg:

Subject := IdMessage1.RawHeaders.Values['Subject'];
link|improve this answer
Nice answer, except RawHeaders is only in Indy10, not Indy9. e-iter.net/Knowledge/Indy9/007544.html – Jessica Brown Jan 22 at 17:23
feedback
up vote 0 down vote accepted

I have solved the problem, calling IdMessage1.Headers.Values['Subject'] BEFORE calling IdMessage1.ProcessHeaders gives different results than after.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.