Changeset 12910


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

Legend:

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

    r12891 r12910  
    9191                 
    9292                //SMTP¥µ¡¼¥Ð 
    93                 $mail_options = array( 
    94                                        'host'    => '210.188.254.83', 
    95                                        'port'    => 25 
    96                                                                         ); 
    97                 $mail_object =& Mail::factory("SMTP", $mail_options); 
     93                $mail_send = array( 
     94                                 'host' => 'mail.example.org', 
     95                                 'port' => '25', 
     96                                 'auth' => false, 
     97                                 'username' => '', 
     98                                 'password' => '', 
     99                                ); 
     100                 
     101                $mail_object =& Mail::factory("SMTP", $mail_send); 
    98102                $mail_object->send($to, $header, $body); 
    99103            } 
Note: See TracChangeset for help on using the changeset viewer.