source:
branches/version-2_4-dev/html/test/naka/mail.php
@
18699
| Revision 18699, 805 bytes checked in by nanasess, 16 years ago (diff) | |
|---|---|
|
|
| Line | |
|---|---|
| 1 | <?php |
| 2 | |
| 3 | require_once("../../admin/require.php"); |
| 4 | |
| 5 | $objMail = new SC_SendMail(); |
| 6 | $objMail->setItem( |
| 7 | '[email protected]' // 宛先 |
| 8 | , "aa" // サブジェクト |
| 9 | , "bb" // 本文 |
| 10 | ,"[email protected]", |
| 11 | "" |
| 12 | ); |
| 13 | // 宛先の設定 |
| 14 | $objMail->setTo("[email protected]", "[email protected]"); |
| 15 | |
| 16 | //SC_Utils_Ex::sfPrintR($objMail); |
| 17 | $objMail->sendMail(); |
| 18 | |
| 19 | print("ok"); |
| 20 | ?> |
Note: See TracBrowser
for help on using the repository browser.
