Ухожу на UTF-8. Попробовал перегнать все за раз в Нетбинс 6.7.1 в Properties/Sources/Encoding. Но получается примерно следующее PHP: <?php /** * Отправляет сообщение если MAILSUPPORT * @throws MailException не удалось отправить сообщение */ function Send($subject= null, $body= null) { if (MAILSUPPORT) { if ($subject) $this->Subject= $subject; if ($body) $this->Body= $body; if(!parent::Send()) { throw new MailException($this->ErrorInfo); } } } а это после PHP: <?php /** * ���������� ��������� ���� MAILSUPPORT * @throws MailException �� ������� ��������� ��������� */ function Send($subject= null, $body= null) { if (MAILSUPPORT) { if ($subject) $this->Subject= $subject; if ($body) $this->Body= $body; if(!parent::Send()) { throw new MailException($this->ErrorInfo); } } } в этом собсна и вопрос