따로 작성해둔 html파일을 mail 함수를 이용해서 html 형식 그대로 보내는 겁니다. 예제 나가겠습니다~~
$filename = "testhtml.html"; // 메일로 보낼 html 파일
$fp = fopen($filename, "r"); // 파일 포인터 열기
$file_content = fread($fp, filesize($filename)); // 파일 크기만큼 읽기
$from = "From:jiggol@kebi.comnContent-Type: text/html; charset=euc-krn";
$sub = "테스트 메일 입니다";
$sendmail_add = "bae5342@hananet.net";
//메일 보내기
mail($sendmail_add, $sub, $file_content, $from);
?>
이렇게 하시면 됩니다.. ^^
Posted by 홍반장