devise-async and delayed_job not sending emails with delayed_job (rails 4)

425 Views Asked by At

I'm trying to send devise mails (default devise mailer) asynchronously with devise_async. However, the mailer does not send them; they only get saved in the delayed_jobs table. I followed the devise-async documentation step by step:

devise_async.rb:

Devise::Async.setup do |config|
  config.enabled = true
  config.backend = :delayed_job
end

application.rb

config.active_job.queue_adapter = :delayed_job

Also added :async to user.rb

Any help is appreciated. Thanks!

1

There are 1 best solutions below

2
On BEST ANSWER

Well, now you have to actually run these jobs :)

RAILS_ENV=production bin/delayed_job start