Changeset 13122
- Timestamp:
- 2007/05/18 19:20:55 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dev/html/admin/mail/sendmail.php
r13121 r13122 90 90 ); 91 91 92 $mail_options = array(93 //¥Ö¥ì¥¤¥ó¤ÎSMTP¥µ¡¼¥Ð¡¼IP¥¢¥É¥ì¥¹94 'host' => "mail.lockon.co.jp"95 ,'port' => "25"96 97 );98 92 // $mail_options = array( 93 // //¥Ö¥ì¥¤¥ó¤ÎSMTP¥µ¡¼¥Ð¡¼IP¥¢¥É¥ì¥¹ 94 // 'host' => "mail.lockon.co.jp" 95 // ,'port' => "25" 96 // 97 // ); 98 // 99 99 100 100 … … 103 103 list($recipients, $header, $body) = $parts; 104 104 105 $mailSend =& Mail::factory("SMTP", $mail_options); 105 //$mailSend =& Mail::factory("SMTP", $mail_options); 106 $mailSend =& Mail::factory("SMTP"); 106 107 print_r($mailSend); 107 108 $mailSend->send($recipients, $header, $body);
Note: See TracChangeset
for help on using the changeset viewer.