source: temp/trunk/html/test/naka/mail.php @ 7036

Revision 7036, 409 bytes checked in by naka, 20 years ago (diff)

* empty log message *

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1<?php
2mb_language("uni");
3$to = "[email protected]";
4//$body = "¥Æ¥¹¥È¤Ç¤¹¡£¥¢¥¤¥¦¥í¥¨??????¼ô??";
5$body = "¤¢¤¢";
6
7$body = mb_convert_encoding($body, 'UTF-8');
8
9print("<html><head><meta http-equiv='Content-Type' content='text/html; charset=UTF-8'></head><body>\n");
10print("<b>" . $body . "</b>");
11
12echo("</body></html>");
13
14/*
15mb_language("uni");
16
17if(mb_send_mail($to, "test", $body)){
18    print("ok");
19}
20*/
21
22?>
Note: See TracBrowser for help on using the repository browser.