Changeset 12962


Ignore:
Timestamp:
2007/05/17 19:46:54 (17 years ago)
Author:
matsumoto
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/html/admin/mail/sendmail.php

    r12955 r12962  
    9393                          ,'port' => "25" 
    9494                                          ); 
     95             
     96            $decoder =& new Mail_mimeDecode($sendResut); 
     97            $parts = $decoder->getSendArray(); 
     98            list($recipients, $header, $body) = $parts; 
     99             
    95100            $mailSend =& Mail::factory("SMTP", $smtp); 
    96             $mailSend->send($sendResut); 
     101            $mailSend->send($recipients, $header, $body); 
    97102             
    98103        } else { 
Note: See TracChangeset for help on using the changeset viewer.