没有收到来自ExceptionNotifier的电子邮件

时间:2012-02-01 02:55:17

标签: ruby-on-rails-3

出于某种原因,我没有从ExceptionNotifier收到任何电子邮件。我按照https://stackoverflow.com/a/4818532/766953中的说明进行操作。

我做了这个测试:

so@plike:~/proj$ bundle exec rake middleware | grep ExceptionNotifier
so@plike:~/proj$ use ExceptionNotifier

在服务器日志中看到这一点:

Sent mail to stackOverlord@yahoo.com (53ms)
Date: Tue, 31 Jan 2012 18:48:57 -0800
...

之前我从来没有从我的rails应用程序发送电子邮件,有什么我想念的吗?它是如何从我指定的任何电子邮件地址神奇地发送的?

1 个答案:

答案 0 :(得分:0)

Nvm必须将此添加到我的environment / development.rb和environments / production.rb

SampleApp::Application.configure do
  ActionMailer::Base.smtp_settings = {
    :address => 'smtp.gmail.com',
    :port => 587,
    :domain => 'stackoverlord.com',
    :authentication => :plain,
    :user_name => 'mygmailusername@gmail.com',
    :password => 'mygmailpassword'
  }
end