source: trunk/html/test/naka/mail.php @ 16680

Revision 16680, 804 bytes checked in by naka, 19 years ago (diff)

テンプレート管理の修正

  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1<?php
2
3require_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.