Changeset 13176


Ignore:
Timestamp:
2007/05/21 13:19:27 (17 years ago)
Author:
matsumoto
Message:
 
File:
1 edited

Legend:

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

    r13174 r13176  
    100100            $parts = $decoder->getSendArray();  
    101101            //print_r($parts);  
    102             list($recipients, $header, $body) = $parts;  
     102            list($recipients, $headers, $body) = $parts;  
    103103             
    104             $mailSend = new Mail();           
    105             $mailSend =& Mail::factory("SMTP", $mail_options); 
    106             $mailSend->send($recipients, $header, $body);  
     104            $mail_object =& Mail::factory("smtp", $mail_options); 
     105            $mail_object->send($recipients, $header, $body);  
    107106            break;              
    108107                  
Note: See TracChangeset for help on using the changeset viewer.