Changeset 13174
- Timestamp:
- 2007/05/21 12:49:26 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dev/html/admin/mail/sendmail.php
r13171 r13174 90 90 $mail_options = array( 91 91 //¥Ö¥ì¥¤¥ó¤ÎSMTP¥µ¡¼¥Ð¡¼IP¥¢¥É¥ì¥¹ 92 'host' => "127.0. 1"92 'host' => "127.0.0.1" 93 93 ,'port' => "25" 94 94 ); … … 101 101 //print_r($parts); 102 102 list($recipients, $header, $body) = $parts; 103 104 //$mailSend =& Mail::factory("SMTP", $mail_options); 105 $mailSend =& Mail::factory("SMTP"); 106 //print_r($mailSend); 103 104 $mailSend = new Mail(); 105 $mailSend =& Mail::factory("SMTP", $mail_options); 107 106 $mailSend->send($recipients, $header, $body); 108 107 break;
Note: See TracChangeset
for help on using the changeset viewer.