[Catalyst] UTF-8 and mails

2010-01-25 Thread Jens Schwarz
Hi, first of all: I have read http://dev.catalystframework.org/wiki/tutorialsandhowtos/Using_Unicode (especially the "Tips for Troubleshooting Unicode in Perl Web Applications") Nevertheless I have a strange UTF-8 problem that I need help with: Concerning UTF-8 everything in my App seems to wor

Re: [Catalyst] UTF-8 and mails

2010-01-25 Thread Alexander Hartmaier
Before testing end-to-end figure out if the chars from your database are *really* utf-8. I forgot to set an env var for the oracle client library to tell it I want unicode which broke my app under fcgid. If you're using DBIx::Class to access your database see http://www.perlmonks.org/?node_id=7362

Re: [Catalyst] UTF-8 and mails

2010-01-25 Thread Octavian Râsnita
From: "Jens Schwarz" Hi, first of all: I have read http://dev.catalystframework.org/wiki/tutorialsandhowtos/Using_Unicode (especially the "Tips for Troubleshooting Unicode in Perl Web Applications") Nevertheless I have a strange UTF-8 problem that I need help with: Concerning UTF-8 everyt

Re: [Catalyst] UTF-8 and mails

2010-01-25 Thread Jens Schwarz
Hi, Original-Nachricht > Datum: Mon, 25 Jan 2010 13:52:45 +0100 > Von: Alexander Hartmaier > An: The elegant MVC web framework > Betreff: Re: [Catalyst] UTF-8 and mails > Before testing end-to-end figure out if the chars from your database are > *really* ut

Re: [Catalyst] UTF-8 and mails

2010-01-25 Thread Bernhard Graf
Jens Schwarz schrieb: > first of all: I have read > http://dev.catalystframework.org/wiki/tutorialsandhowtos/Using_Unicode > (especially the "Tips for Troubleshooting Unicode in Perl Web Applications") > Nevertheless I have a strange UTF-8 problem that I need help with: > > Concerning UTF-8 eve

Re: [Catalyst] UTF-8 and mails

2010-01-25 Thread Bernhard Graf
Jens Schwarz schrieb: > If I set mysql_enable_utf8 (I guess that's what you're referring to), it does > not change anything. Beside: > http://dev.catalystframework.org/wiki/tutorialsandhowtos/Using_Unicode#Note > states that this flag is "experimental and may change in future versions" so > I

Re: [Catalyst] UTF-8 and mails

2010-01-25 Thread Bill Moseley
On Mon, Jan 25, 2010 at 6:54 AM, Bernhard Graf wrote: > > Does Mail::Sender::Easy automatically encode "_text" into the encoding > given in charset? If not, then /you/ have to do it: > Encode::encode("utf-8", $string); > That's what I do. Specifically, I have this for generating inline text ema