HI
I'm having the same problem with the subject field even though I have used you "fix".
Se image where the subject is no decoded.
Here is my code.
Sub POP_DownloadCompleted (Success AsBoolean, MessageId AsInt, MessageAsString)
Dim From AsString
Dim b() AsByte = Message.GetBytes("ISO-8859-1")
Message=BytesToString(b, 0, b.Length, "UTF-8")
If Success Then
Dim m AsMessage
m = MailParser.ParseMail(Message, File.DirRootExternal)
If sf.InString(m.FromField,">")>0 Then
From=m.Subject
From=m.FromField.SubString(m.FromField.IndexOf("<")+1)
From=From.SubString2(0,From.IndexOf(">"))
Else
From=m.FromField
EndIf
From=From.Trim
EndIf
111111111111111
End Sub