Index: branches/dev/html/admin/mail/sendmail.php
===================================================================
--- branches/dev/html/admin/mail/sendmail.php	(revision 12955)
+++ branches/dev/html/admin/mail/sendmail.php	(revision 12962)
@@ -93,6 +93,11 @@
                           ,'port' => "25"
                                           );
+            
+            $decoder =& new Mail_mimeDecode($sendResut);
+            $parts = $decoder->getSendArray();
+            list($recipients, $header, $body) = $parts;
+            
             $mailSend =& Mail::factory("SMTP", $smtp);
-            $mailSend->send($sendResut);
+            $mailSend->send($recipients, $header, $body);
             
         } else {
