Delayed Jobs and Action Mailer
I am having trouble with implementing delayed jobs with my ActionMailer: Before Delayed Job Implementation: class NotificationsMailer < ActionMailer::Base default :from => "noreply@mycompany.com" default :to => "info@mycompany.com" def new_message(message) @message = message mail(:subject => "[Company Notification] #{message.subject}") end end and called it using this line (it worked perfectly fine): NotificationsMailer.new_message(@message).deliver After the Delayed Job implementation all i did was change the deliver line to: NotificationsMailer.delay.new_message(@message) In addition, I