Changeset 13115


Ignore:
Timestamp:
2007/05/18 16:56:47 (17 years ago)
Author:
nakanishi
Message:
 
File:
1 edited

Legend:

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

    r13112 r13115  
    9090                                                                         ); 
    9191             
    92             $smtp = array(   
     92            $mail_options = array(   
     93                            //¥Ö¥ì¥¤¥ó¤ÎSMTP¥µ¡¼¥Ð¡¼IP¥¢¥É¥ì¥¹ 
    9394                           'host' => "210.188.254.83" 
    9495                          ,'port' => "25" 
     
    9798            print_r($sendResut); 
    9899             
    99             $decoder = & new Mail_mimeDecode($sendResut); 
     100            $decoder =& new Mail_mimeDecode($sendResut); 
    100101            $parts = $decoder->getSendArray(); 
    101102            list($recipients, $header, $body) = $parts; 
    102103             
    103             $mailSend = & SC_Mail::factory("SMTP", $smtp); 
     104            $mailSend =& Mail::factory("SMTP", $mail_options); 
    104105            $mailSend->send($recipients, $header, $body); 
    105106             
Note: See TracChangeset for help on using the changeset viewer.