in reply to Re^2: Mail::Sender character set/encoding
in thread Mail::Sender character set/encoding
Is there a universal way of determining a character set being used
You can try Encode::Guess, but generally it's better to "just know", as there's no easy failsafe way to determine encodings. In other words, the module can tell apart UTF-8 from ISO-8859-1, but is having a hard time figuring out if something is ISO-8859-1 or ISO-8859-15... (typically, you'd also need to specify potential candidates as hints, e.g. via ->set_suspects())
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Mail::Sender character set/encoding
by Rodster001 (Pilgrim) on Mar 12, 2009 at 20:53 UTC | |
by almut (Canon) on Mar 12, 2009 at 21:28 UTC |