메일 전송 오류
류 제규이(가) 2016-06-15에 추가
레드마인에서 메일 알림 기능을 사용하려고 하는데
"테스트 메일 보내기"에서 오류가 납니다.
오류 내용 : 메일을 전송하는 과정에 오류가 발생했습니다. (+OK Hello there. )
configuration.yml 설정 내용
production:
email_delivery:
delivery_method: :smtp
smtp_settings:
enable_starttls_auto: true
address: "mail.xxx.com"
port: '110'
domain: "xxx.com"
authentication: :plain
user_name: "user@xxx.com"
password: "12345@"
작은 힌트라도 부탁드립니다.
log에도 별내용은 없는데 답답합니다.;;
답글 (1)
RE: 메일 전송 오류 - 커뮤니티 관리자이(가) 2016-07-01에 추가
아래 설정으로 잘 되는 것을 적어 놓습니다.
default:
# Outgoing emails configuration (see examples above)
email_delivery:
delivery_method: :smtp
smtp_settings:
enable_starttls_auto: true
address: smtp.gmail.com
port: 587
domain: smtp.gmail.com
authentication: :plain
user_name: "user_id"
password: "password"