:)
Size: a a a
:)
:)
:)
A
SD
AS
default_url_options[:host] = "myapp.com"
config.action_mailer.raise_delivery_errors = true
config.action_mailer.perform_deliveries = true
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => 'smtp.mailgun.org',
:port => "587",
:domain => 'mailgun.org',
:user_name => ENV['mailgun_login'],
:password => ENV['mailgun_pass'],
:authentication => :plain,
:enable_starttls_auto => true
}
AA
Scaleway
AS
Scaleway
AA
AA
AS
NP
AA
config.
active_record.
dump_schema_after_migration
=
false
config.
action_mailer.
default_url_options
= { host: ENV["MAILER_HOST"] }
config.
action_mailer.
delivery_method
= :smtp
config.
action_mailer.
smtp_settings
= {
:authentication
=> :plain,
:address
=> ENV["MAILGUN_SMTP_HOSTNAME"],
:port
=> 587,
:domain
=> ENV["MAILGUN_DOMAIN"],
:user_name
=> ENV["MAINGUN_USER_NAME"],
:password
=> ENV["MAINGUN_USER_PASSWORD"]
}
Вот с таким
конфигом для mailgun а у меня летом точно работалоr
NP
NP
NP
AS
config.
active_record.
dump_schema_after_migration
=
false
config.
action_mailer.
default_url_options
= { host: ENV["MAILER_HOST"] }
config.
action_mailer.
delivery_method
= :smtp
config.
action_mailer.
smtp_settings
= {
:authentication
=> :plain,
:address
=> ENV["MAILGUN_SMTP_HOSTNAME"],
:port
=> 587,
:domain
=> ENV["MAILGUN_DOMAIN"],
:user_name
=> ENV["MAINGUN_USER_NAME"],
:password
=> ENV["MAINGUN_USER_PASSWORD"]
}
Вот с таким
конфигом для mailgun а у меня летом точно работалоNP
AA