웹관련자료(web)/php & ajax

그누보드 네이버(naver) smtp 설정

2pie 2023. 12. 27. 14:10
반응형

#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_SMTP_PORT)
$mail->Port = G5_SMTP_PORT;

/* 추가 시작 */
$mail->SMTPAuth = true;
$mail->AuthType = "LOGIN";
$mail->SMTPSecure = G5_SMTP_SECURE;
$mail->Username = G5_SMTP_USER;
$mail->Password = G5_SMTP_PW;
/* 추가 끝 */
}

#추가로 방화벽 사용시 587번 포트에 대한 방화벽 해제 필요

반응형