"; $to = "KG "; $subject = "UTF-8 from PEAR Mail на русском"; $body = "Превед,\n\nPearMail на русском !\n-- \nТест"; $host = "mail.compulypse.net"; #$username = "smtp_username"; #$password = "smtp_password"; $headers = array ( 'Content-Type' =>"text/plain; charset=UTF-8", 'Content-Transfer-Encoding' => "8bit", 'From' => $from, 'To' => $to, 'Subject' => $subject); $smtp = Mail::factory('smtp', array ('host' => $host)); // 'auth' => true, // 'username' => $username, // 'password' => $password)); $mail = $smtp->send($to, $headers, $body); if (PEAR::isError($mail)) { echo("

" . $mail->getMessage() . "

"); } else { echo("

Message successfully sent!

"); } ?>