作者热门文章
- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
delayed_job 是否有类似 exception_notification 的 gem?最好与 REE-1.8.7 和 Rails 2.3.10 一起使用。
最佳答案
我过去曾为延迟的工作佣金任务做过类似的事情:
require 'action_mailer'
class ExceptionMailer < ActionMailer::Base
def setup_mail
@from = ExceptionNotifier.sender_address
@sent_on = Time.now
@content_type = "text/plain"
end
def exception_message(subject, message)
setup_mail
@subject = subject
@recipients = ExceptionNotifier.exception_recipients
@body = message
end
end
namespace :jobs do
desc "sync the local database with the remote CMS"
task(:sync_cms => :environment) do
Resort.sync_all!
result = Delayed::Job.work_off
unless result[1].zero?
ExceptionMailer.deliver_exception_message("[SYNC CMS] Error syncing CMS id: #{Delayed::Job.last.id}", Delayed::Job.last.last_error)
end
end
结束
关于ruby-on-rails - delayed_job 的 exception_notification,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4104093/
我的 development.rb、staging.rb 和 production.rb 中有以下内容 config.middleware.use ExceptionNotifier, :emai
delayed_job 是否有类似 exception_notification 的 gem?最好与 REE-1.8.7 和 Rails 2.3.10 一起使用。 最佳答案 我过去曾为延迟的工作佣金任
我正在从 rails 2.3 迁移到 rails 3.1,我试图在生成异常时发送电子邮件。我正在使用 exception_notification gem。 我的其余电子邮件都在工作。但是异常邮件不会
我是第一次尝试使用 exception_notification。我观看了 Railscast 并遵循了作者在 http://smartinez87.github.io/exception_notif
我创建了部署在 Heroku 上的 rails 应用程序。 还有,exception_notification启用 gem 。 当它在Gmail的开发设置ActionMailer时, 一切都很好,并从
我是一名优秀的程序员,十分优秀!