我们的Rails应用程序使用ExceptionNotificationer Gem
并更改配置文件
异常邮件的运行良好
但是发件人邮件不是Noreply<noreply@our_domain.com>
发件人总是我的电子邮件地址
我的production.rb文件是
config.log_formatter = ::Logger::Formatter.new
config.middleware.use ExceptionNotification::Rack,
:email => {
:email_prefix => "[Exception ",
:sender_address => %{"Noreply" <noreply@our_domain.com>},
:exception_recipients => %w{my_email@gmail.com}
}
setup_mailer.rb文件是
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.raise_delivery_errors = true
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => "our_domain.com",
:user_name => "my_eamail@our_domain.com",
:password => "PASSWORD",
:authentication => "login",
:enable_starttls_auto => true
}
为什么发件人地址不更改???
如果您使用Gmail SMTP帐户进行身份验证,Gmail将覆盖您Gmail帐户的发件人。他们不允许您使用他们的SMTP从其他域发送电子邮件。
尝试production.rb
中的以下代码(假设您想在生产中工作)和硬代码它…
##added exception notification gem
MyApp::Application.config.middleware.use ExceptionNotification::Rack,
:email => {
:email_prefix => "[MyApp_Error] ",
:sender_address => %{"notifier" <notifier@myApp.com>},
:exception_recipients => %w{your_desired_email@gmail.com}
}
我为我工作…
#TRY THIS in:sender_address写下你自己的名字和邮件地址
:sender_address => %{"Username" <useremailid@xyzmail.com>},