메인 항목으로

환경설정

사용자 생성 및 이후 원활한 사용을 위해서는 반드시 smtp 설정이 필요 합니다.

설치된 Docker와 Mapping된 아래 파일을 열어 ".env" 파일 (config/www/.env)을 수정해 줍니다.

# Mail system to use
# Can be 'smtp' or 'sendmail'
MAIL_DRIVER=smtp

# Mail sender details
MAIL_FROM_NAME="메일발송자"
MAIL_FROM=이메일주소

# SMTP mail options
# These settings can be checked using the "Send a Test Email"
# feature found in the "Settings > Maintenance" area of the system.
MAIL_HOST=smtp.naver.com
MAIL_PORT=465
MAIL_USERNAME=smtp계정아이디
MAIL_PASSWORD=smtp계정비번
MAIL_ENCRYPTION=tls

위 예제는 네이버 smtp 이며 사용자 환경에 맞게 수정해 주시면 됩니다.