search for: create_daily_report

Displaying 1 result from an estimated 1 matches for "create_daily_report".

2006 Aug 01
2
actionmailer cant find template in backgroundrb
Im trying to send mails from a backgroundrb worker and it seems like ActionView cant find my template. same code works as a rake task. here my worker: class StatusMailWorker < BackgrounDRb::Rails repeat 1.minutes # <-- hehe! def do_work(args) [...blah...] NotificationMailer.create_daily_report(users, rep, items) end end end its throwing the following error: No rhtml, rxml, rjs or delegate template found for daily_report - (ActionView::ActionViewError) d:/ruby/lib/ruby/gems/1.8/gems/actionpack-1.12.3/lib/action_view/base.rb:387:in `find_template_extension_for'' d:/ruby/li...