Displaying 1 result from an estimated 1 matches for "send_review_emails".
2008 May 03
2
backgroundrb / actionmailer / sendmail
...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 ''kapelner at gmail.com''
    subject ''test email...