2021-03-31 13:38:49 +00:00
|
|
|
# Load the Rails application.
|
2021-04-29 06:41:23 +00:00
|
|
|
require_relative 'application'
|
2021-03-31 13:38:49 +00:00
|
|
|
|
|
|
|
|
# Initialize the Rails application.
|
|
|
|
|
Rails.application.initialize!
|
2021-04-23 07:36:02 +00:00
|
|
|
|
|
|
|
|
ActionMailer::Base.smtp_settings = {
|
2021-04-29 06:41:23 +00:00
|
|
|
user_name: ENV.fetch('SMTP_USERNAME', ''),
|
|
|
|
|
password: ENV.fetch('SMTP_PASSWORD', ''),
|
|
|
|
|
domain: ENV.fetch('SMTP_DOMAIN', ''),
|
|
|
|
|
address: ENV.fetch('SMTP_ADDRESS', ''),
|
|
|
|
|
port: 587,
|
|
|
|
|
authentication: :plain,
|
|
|
|
|
enable_starttls_auto: true
|
2021-04-23 07:36:02 +00:00
|
|
|
}
|