Configure SMTP settings
All checks were successful
Run unit tests / copyright_notice (pull_request) Successful in 34s
Run unit tests / rubocop (pull_request) Successful in 53s
Run unit tests / check-licenses (pull_request) Successful in 1m3s
Run unit tests / unit_tests (pull_request) Successful in 2m2s
Run unit tests / build-static-assets (pull_request) Successful in 14m9s
All checks were successful
Run unit tests / copyright_notice (pull_request) Successful in 34s
Run unit tests / rubocop (pull_request) Successful in 53s
Run unit tests / check-licenses (pull_request) Successful in 1m3s
Run unit tests / unit_tests (pull_request) Successful in 2m2s
Run unit tests / build-static-assets (pull_request) Successful in 14m9s
This commit is contained in:
parent
717ee35015
commit
3429ac64ec
@ -72,6 +72,14 @@ Rails.application.configure do
|
|||||||
# config.active_job.queue_name_prefix = "wedding_planner_production"
|
# config.active_job.queue_name_prefix = "wedding_planner_production"
|
||||||
|
|
||||||
config.action_mailer.perform_caching = false
|
config.action_mailer.perform_caching = false
|
||||||
|
config.action_mailer.delivery_method = :smtp
|
||||||
|
config.action_mailer.smtp_settings = {
|
||||||
|
address: ENV["SMTP_ADDRESS"],
|
||||||
|
port: ENV["SMTP_PORT"],
|
||||||
|
user_name: ENV["SMTP_USER_NAME"],
|
||||||
|
password: ENV["SMTP_PASSWORD"],
|
||||||
|
authentication: ENV["SMTP_AUTHENTICATION"]&.to_sym
|
||||||
|
}
|
||||||
|
|
||||||
# Ignore bad email addresses and do not raise email delivery errors.
|
# Ignore bad email addresses and do not raise email delivery errors.
|
||||||
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user