http://www.perlmonks.org?node_id=1013859


in reply to Re^4: MIME::Parser parse_data
in thread MIME::Parser parse_data

Then I would guess that you have an encoding problem in the larger sense.

Somewhere along the long chain from mail sender via your program to the output of your program, things are getting decoded in the wrong way.

I know of no other way than to check at every conversion step that you decode the byte sequence from the right encoding.

As both Content-Type header lines are equal, you should handle them in an equal fashion. This could mean that the sending mail program already encodes the mail in a wrong way. That would be out of your influence.

I still recommend checking the remaining parts of your program as to whether you mix up different string encodings when converting or printing output.