Use HELO
This commit is contained in:
parent
a261801a41
commit
327bec0637
1 changed files with 15 additions and 1 deletions
|
@ -87,7 +87,21 @@ Rails.application.configure do
|
||||||
authentication: :cram_md5
|
authentication: :cram_md5
|
||||||
}
|
}
|
||||||
else
|
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 = {
|
config.action_mailer.default_url_options = {
|
||||||
host: 'localhost',
|
host: 'localhost',
|
||||||
port: 3000
|
port: 3000
|
||||||
|
|
Loading…
Add table
Reference in a new issue