Bakesale files use UTF-8 encoding. This includes translation files. But
email notifications have to be sent using ISO-8859-1, so utf8_decode() have
to be applied to the subject and message.
FIX:
In /app/controllers/components/email.php;
Find:
$success = mail($this->to, $this->subject, $this->message(), $headers);
Change to:
$success = mail($this->to, utf8_decode($this->subject),
utf8_decode($this->message()), $headers);
This solved the problem for me.
Original issue reported on code.google.com by jaime.it...@gmail.com on 19 Mar 2008 at 2:57
Original issue reported on code.google.com by
jaime.it...@gmail.com
on 19 Mar 2008 at 2:57