[PHP] PhpMailer로 메일 보내기
1. 다음 링크에서 필요한 모듈을 다운로드 받는다. (PHPMailer) http://code.google.com/a/apache-extras.org/p/phpmailer/ 2. 다운로드 받은 파일을 적당한 경로에 압축을 푼다. 3. TEST 해본다. require_once("inc/PHPMailer/class.phpmailer.php"); $mail = new PHPMailer(true); // the true param means it will throw exceptions on errors, which we need to catch $mail->IsSMTP(); // telling the class to use SMTP try { // $mail->CharSet = "euc-kr"; // $mail..