parsemail icon indicating copy to clipboard operation
parsemail copied to clipboard

fix: inner mime type quoted-printable

Open matoubidou opened this issue 2 years ago • 0 comments

  • multipart.Reader.NextPart() hides the Content-Transfer encoding. Therefor I switched to NextRawPart() and needed to add the decoding to the decodeContent(..) func.
  • I also could have changed the detection of embedded files, sticked to NextPart() and used the mime decoding of multipart itself. I decided against that approach in order to stick close to your implementation.

matoubidou avatar Mar 08 '22 10:03 matoubidou