그누보드, 영카트 PHPMailer
/lib/mailer.lib.php 내 28줄 ~ 38줄 변경
$mail = new PHPMailer(); // defaults to using php "mail()" if (defined('G5_SMTP') && G5_SMTP) { $mail->IsSMTP(); // telling the class to use SMTP $mail->Host = G5_SMTP; // SMTP server if(defined('G5_SMTP_PORT') && G5_SMTP_PORT) $mail->Port = G5_SMTP_PORT; $mail->SMTPSecure = "ssl"; $mail->SMTPAuth = true; $mail->Username = '이메일 주소'; $mail->Password = '패스워드'; }