미디어 온 연구실

BIT테마에 네이버 SMTP 설정 변경 작업 본문

연구실 노트

BIT테마에 네이버 SMTP 설정 변경 작업

미디어ON 2024. 5. 25. 01:00

위치는 /BIT루트/theme/BIT사용테마/php에

 

config.inc.php 파일을 다음과 같은 형태로 네이버 정보로 수정하였습니다.

 

<?php

// USE SMTP OR mail()
// SMTP is recommended, mail() is disabled on most shared hosting servers.
// IF false : SMTP host/port/user/pass/ssl not used, leave empty or as it is!
$config['use_smtp']             = true;                     // true|false

// Naver SMTP Server Settings
$config['smtp_host']            = 'smtp.naver.com';         // eg.: smtp.mandrillapp.com
$config['smtp_port']            = 465;                      // eg.: 587
$config['smtp_user']            = 'yourid@naver.com';           // you@gmail.com
$config['smtp_pass']            = 'yourpassword';               // password
$config['smtp_ssl']             = true;                     // true for google (port 465), false for others

// Who receive all emails?
$config['send_to']              = 'yourid@naver.com';    // destination of all emails sent throught contact form

// Email Subject
$config['subject']              = 'Inquiry Form';   // subject of emails you receive

?>
Comments