#config.php /* 추가 시작 */ define('G5_SMTP', 'smtp.naver.com'); define('G5_SMTP_PORT', '587'); define('G5_SMTP_SECURE', 'tls'); define('G5_SMTP_USER', 'xxxxxxx@naver.com'); define('G5_SMTP_PW', 'xoxoxo'); /* 추가 끝 */ #./lib/mailer.lib.php #29라인 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..