We save PDF attachments in an MSG message using
Dim message As MailMessage
message = MailMessage.Load(TempFilename, MessageFormat.Msg)
Dim MsgFS As FileStream = New FileStream(MsgTempFileName, FileMode.CreateNew, FileAccess.Write, FileShare.Write)
message.Attachments(iAtts).SaveRawContent(MsgFS)
However, Acrobat Reader refuses to read the saved PDF file. Error mesage mentions an incorrect decoding of an email attachment.
Please advise