Rails,Exception Notifier不会更改sender_address

时间:2015-02-11 09:05:16

标签: ruby-on-rails ruby actionmailer exception-notification

我们的Rails应用程序使用ExceptionNotifier Gem

并更改配置文件

异常邮件正常运作

但发件人邮件不是Noreply< noreply@our_domain.com>

始终发件人是我的email_address

我的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

} 

为什么发件人地址不会改变???

3 个答案:

答案 0 :(得分:3)

如果您使用Gmail SMTP帐户进行身份验证,Gmail会将发件人覆盖到您的Gmail帐户。他们不允许您使用他们的SMTP从其他域发送电子邮件。

答案 1 :(得分:0)

尝试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}
   }

我为我工作....

答案 2 :(得分:0)

#TRY这里:sender_address写你自己的名字和邮件地址

 :sender_address => %{"Username" <useremailid@xyzmail.com>},