Displaying 1 result from an estimated 1 matches for "quiz_review_sender".
2008 May 03
2
backgroundrb / actionmailer / sendmail
...b worker and the email doesn''t
send. I get no log messages in the sendmail log or the system log, nothing
in the backgroundrb logs at all, nothing in the production log.
Below is my code for each component
worker:
class QuizReviewerWorker < BackgrounDRb::MetaWorker
  set_worker_name :quiz_review_sender
  def create(args = nil)
  end
  def send_review_emails
    mail = Notifier.create_test_email
    status = Notifier.deliver(mail)
    logger.info ''test mail:'' + mail.body
  end
end
mailer:
class Notifier < ActionMailer::Base
  def test_email
    recipients ''kapeln...