<?php
//************************** 보내고 싶은 내용에 대한 부분 *****************************************
$body="<center> 안녕하세요 </center> ";
$body = ereg_replace("\'","\"",$body);
$body = stripslashes($body);
$mailheaders .= "Return-Path: $from\r\n";
$mailheaders .= "From: $rn <$from>\r\n";
$mailheaders .= "X-Mailer: Gfew Interface\r\n";
$mailheaders .= "Content-Type: text/html; charset=euc-kr\r\n";
$from='usere-mail address'; //보내는 사람의 이메일 주소
$to_addr = '받는 사람의 이메알 주소'; //받는 사람의 이메알 주소
$subject="???님 회원 가입을 축하 합니다."; //제목
$from=$from;
//************************************************************************************************
mail($to_addr,$subject,$body,$mailheaders);
//************************************************************************************************
echo(" <meta http-equiv='Refresh' content='20; URL=./mailsuccess.php3'>");
exit;
}
?>