Merge pull request #6164 from tchak/custom-smtp

Use HELO (custom dev SMTP)
This commit is contained in:
Paul Chavard 2021-05-06 09:07:44 +02:00 committed by GitHub
commit 924ce114f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,7 +87,21 @@ Rails.application.configure do
authentication: :cram_md5
}
else
config.action_mailer.delivery_method = :letter_opener_web
# https://usehelo.com
if ENV['HELO_ENABLED'] == 'enabled'
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
user_name: APPLICATION_NAME,
password: '',
address: '127.0.0.1',
domain: '127.0.0.1',
port: ENV.fetch('HELO_PORT', '2525'),
authentication: :plain
}
else
config.action_mailer.delivery_method = :letter_opener_web
end
config.action_mailer.default_url_options = {
host: 'localhost',
port: 3000