source: branches/feature-module-paygent/html/test/naka/mail_test2.php @ 15146

Revision 15146, 428 bytes checked in by naka, 17 years ago (diff)
RevLine 
[15146]1<?php
2    require_once("../../require.php");
3    $objMail = new GC_SendMail();
4   
5    $objMail->setItem("naka@lockon.co.jp", "¥Æ¥¹¥È£²", "¤¢", "test@lockon.co.jp", "from", "test@lockon.co.jp", "test@lockon.co.jp");
6   
7    print_r($objMail);
8    print(CHAR_CODE);
9   
10    $header = "From: test@lockon.co.jp";
11   
12    //¡¡¥á¡¼¥ëÁ÷¿®
13    if( mb_send_mail($objMail->to, $objMail->subject, $objMail->body, $header) ) {
14        return true;
15    }
16   
17   
18?>
Note: See TracBrowser for help on using the repository browser.