Changeset 12917


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

Legend:

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

    r12916 r12917  
    9797                $body = $mailbody; 
    9898                 
    99                 $mail_object =& Mail::factory("SMTP", $mail_send); 
    100                 $mail_object->send($recipients, $header, $body); 
     99                $objMail =& Mail::factory("SMTP", $mail_send); 
     100                $result = $objMail->send($recipients, $headers, $body); 
    101101                if (PEAR::isError($result)) { 
    102102                    die($result->getMessage()); 
Note: See TracChangeset for help on using the changeset viewer.