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!
Well, now you have to actually run these jobs :)