//--------------------------------- »ó´Ü ½ºÅ©¸³Æ® -------------------------------//
require "../func.php";
$Conn = get_dbconn('../config/conn.php');
?>
Ä£±¸¿¡°Ô À̸ÞÀÏ·Î ÃßõÇϱâ
if($mode == "send") {
$env = get_config($table, $Conn); // ȯ°æº¯¼ö¸¦ °¡Á®¿Â´Ù.
$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 "
";
}
?>