// ȯ°æ ¼³Á¤
include "dbconn.php";
include "cfgfile.php";
echo "
Ä£±¸¿¡°Ô À̸ÞÀÏ·Î ÃßõÇϱâ
";
if($mode == "send") {
// ½½·¡½Ã Á¦°Å¿´´ø°¨??
$title = stripslashes($subject);
$title = "$fromemail" . "´ÔÀÌ º¸³½ ¸ÞÀÏÀÔ´Ï´Ù.";
$sender = $fromemail . "´ÔÀÇ";
$content = stripslashes($content);
$content = nl2br($content);
$content = "
";
$header = "From: $fromemail<$fromemail>\n";
$header .= "Reply-to: $fromemail\n";
$header .= "Content-Type: text/html; charset=EUC-KR";
mail("$toemail" , "$title" , "$content" , "$header");
echo "
";
}
?>