$recipient = "blueshin7@naver.com";
$subject = $_GET['title'];
$mail_from = $_GET['email'];
$mail_body = "
SUBJECT |
". $_GET['title']." |
".
"
NAME |
". $_GET['senduser']." |
".
"
PHONE |
". $_GET['phone']." |
".
"
EMAIL |
". $_GET['email']." |
".
"
REQUEST |
". $_GET['body']." |
".
"
";
$to = iconv('CP949','UTF-8',$to);
$title = iconv('CP949','UTF-8',$title);
$body = iconv('CP949','UTF-8',$body);
$email = iconv('CP949','UTF-8',$email);
$header = "From:$mail_from\n";
$header .= "Content-Type: text/html;charset=UTF-8";
$email = mail($recipient, $subject, $mail_body, $header);
if (!$email)
echo " ";
else
echo " ";
?>