"utf-8", "html_charset" => "utf-8", "header_charset" => "utf-8", "eol" => "\n" ); // references: @ function brisk_mail($to, $subject, $text, $html) { GLOBAL $brisk_mail_hp, $G_admin_mail; $hdrs = array( 'From' => $G_admin_mail, 'Subject' => $subject ); // if ($refs != Null) // $hdrs['References'] = $refs; $mime = new Mail_mime($brisk_mail_hp); $mime->setTXTBody($text); $mime->setHTMLBody($html); $body = $mime->get(); $hdrs = $mime->headers($hdrs); $mail = Mail::factory('mail'); $mail->send($to, $hdrs, $body); return TRUE; } ?>