rails_template/config/smtp_mailer.yml

17 lines
281 B
YAML

default: &default
primary_sender_email: 'no-reply@app.com' # TODO: Change email
host: <%= ENV.fetch('SMTP_HOST', 'localhost') %>
port: <%= ENV.fetch('SMTP_PORT', 1025) %>
development:
<<: *default
test:
<<: *default
staging:
<<: *default
production:
<<: *default