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