Skip to content
Snippets Groups Projects
Unverified Commit 8c03b45f authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix unset `SMTP_RETURN_PATH` environment variable causing e-mail not to send (#17982)

parent 1b91359a
No related branches found
No related tags found
No related merge requests found
......@@ -95,11 +95,12 @@ Rails.application.configure do
config.action_mailer.default_options = {
from: outgoing_email_address,
reply_to: ENV['SMTP_REPLY_TO'],
return_path: ENV['SMTP_RETURN_PATH'],
message_id: -> { "<#{Mail.random_tag}@#{outgoing_email_domain}>" },
}
config.action_mailer.default_options[:reply_to] = ENV['SMTP_REPLY_TO'] if ENV['SMTP_REPLY_TO'].present?
config.action_mailer.default_options[:return_path] = ENV['SMTP_RETURN_PATH'] if ENV['SMTP_RETURN_PATH'].present?
config.action_mailer.smtp_settings = {
:port => ENV['SMTP_PORT'],
:address => ENV['SMTP_SERVER'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment