Monday, April 27, 2009

Email header encoding problem fixed

Using Encode::encode($text, "MIME-Q"); is not giving the same results with 32 bit and 64 bit linux.

But, using Encode::from_to($text, "utf8", "MIMI-Q", 1) gave the right encoding for email header.

Probably because of the last parameter (1)

No comments:

Post a Comment