source: branches/comu-ver2/html/test/naka/mail.php @ 18701

Revision 18701, 805 bytes checked in by nanasess, 14 years ago (diff)

Copyright の更新(#601)

  • 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                                      'naka@lockon.co.jp'                                   // 宛先
8                                      , "aa"                            // サブジェクト
9                                      , "bb"                // 本文
10                                      ,"naka@lockon.co.jp",
11                                      ""
12                                      );
13                    // 宛先の設定
14                    $objMail->setTo("naka@lockon.co.jp", "naka@lockon.co.jp");
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.