in reply to character encoding & french accents
If you would prefer your email output to be iso-8859-1, use the Encode module on the text data, or PerlIO control on the output file handle, in order to assure that the text is written with that encoding; assuming the email text is going out via a file handle the easiest thing would probably be:
If you do this, you should still heed thesa's advice, and explicitly declare what character set you're using in the MIME header.binmode $fh, ":encoding(iso-8859-1)"; # convert internal utf8 to lati +n1 on output
|
|---|