mailer 사용시 한글이 안나오는경우....
본문
$subject = "[".$config['cf_title']."]".$_POST['con_subject'];
$file = "";
$content = "";
$content .= $_POST['customer'];
$content .= "\n";
$content .= "\n";
$content .= "First Name: ";
$content .= $_POST['con_name1'];
$content .= "\n";
$content .= "Last Name: ";
$content .= $_POST['con_name2'];
$content .= "\n";
$content .= "\n";
$content .= "Phone: ";
$content .= $_POST['con_phone'];
$content .= "\n";
$content .= "\n";
$content .= "Email: ";
$content .= $_POST['con_email'];
$content .= "\n";
$content .= "\n";
$content .= "Subject: ";
$content .= $_POST['con_subject'];
$content .= "\n";
$content .= "\n";
$content .= "Inquiry: ";
$content .= "\n";
$content .= $_POST['con_content'];
$content .= "\n";
$type = 1;
$content = stripslashes($content);
$content = str_replace("\n", "<br>", $content);
$current_url = G5_URL;
$mail_content = '<!doctype html><html lang="kr"><head><meta charset="utf-8"><title>Contact Me</title><link rel="stylesheet" href="'.$current_url.'/style.css"></head><body>'.$content.'</body></html>
mailer($fnick, $fmail, $to, $subject, $mail_content, $type, $file);
mailer로 이메일 발송시
$content 의 $_post의 내용이 영물일경우 이상없는데...
한글일경우엔 이메일에
이런식으로 나오지를 안네요...
발송전 echo $content 시
이상은 없는데.. 어떻게 해야할까요???
!-->
답변 2
해당 파일의 인코딩 형식을 utf-8로 바꿔보시겠어요?
저장 시 인코딩을 변경해보시거나 아니면 메타소스로 입력하시거나 그것도 안되시면
iconv로 변환해주시면 될것 같아요~
답변을 작성하시기 전에 로그인 해주세요.