UserMailer with delay method not working in rails 4. As mentioned below, this code doesn't works
def welcome_email
UserMailer.delay.welcome_email(self)
end
But when I use below code it works fine.
UserMailer.welcome_email(self).deliver
I have installed 2 gems, i.e
gem 'delayed_job'
gem 'delayed_job_active_record'
You need to pass
ENV
variables to your worker command. Use this command in your command line: