/home/mjc1/public_html/html/1.php


1
2
3
4
5
6
7
8
9
10
11
<?
header
("Content-type:text/html;charset=utf-8");

$to='ryunen@naver.com';
$subject="테스트 메일 입니다.";
$msg="보낸사람:mjsoft@naver.com\n".
"메일내용:메일 내용입니다.";

$sendmail mail($to,$subject,$msg);

?>