charset 을 utf-8 로 고정

This commit is contained in:
gnuboard
2013-07-29 16:28:54 +09:00
parent 69d6d40ee2
commit cb8c73db5d
3 changed files with 2 additions and 18 deletions

View File

@ -34,7 +34,7 @@ if ($type == 2) {
// html 이면
if ($type) {
$current_url = G4_URL;
$mail_content = '<!doctype html><html lang="ko"><head><meta charset="'.$g4['charset'].'"><title>메일보내기</title><link rel="stylesheet" href="'.$current_url.'/style.css"></head><body>'.$content.'</body></html>';
$mail_content = '<!doctype html><html lang="ko"><head><meta charset="utf-8"><title>메일보내기</title><link rel="stylesheet" href="'.$current_url.'/style.css"></head><body>'.$content.'</body></html>';
}
else
$mail_content = $content;