Index: trunk/core/kernel/utility/email.php =================================================================== diff -u -r6093 -r6428 --- trunk/core/kernel/utility/email.php (.../email.php) (revision 6093) +++ trunk/core/kernel/utility/email.php (.../email.php) (revision 6428) @@ -34,7 +34,10 @@ //$this->TextBoundary = uniqid(adodb_mktime()); $this->EmailBoundary = uniqid(adodb_mktime()); $this->LineFeed = "\n"; - $this->Charset='ISO-8859-1'; + + $lang =& $this->Application->recallObject('lang.current'); + $this->Charset = $lang->GetDBField('Charset') ? $lang->GetDBField('Charset') : 'ISO-8859-1'; + $this->TransferEncoding='8bit'; $this->Body = ''; $this->setHeader('Subject', 'Automatically generated message');