I have a Rails 3 App using Devise on Heroku. Problem is I'm sending emails with Sendgrid and email delivery is slow, it makes the app hang. So I'm interested in using delayed_job to queue the email delivery in the background so my app is responsive to the user.

How can Devise be used with delayed_job? Any way to setup Devise to use delayed_job?

Thanks

link|improve this question

70% accept rate
feedback

7 Answers

up vote 13 down vote accepted

From Robert May:

https://gist.github.com/659514

  module Devise
    module Models
        module Confirmable
            handle_asynchronously :send_confirmation_instructions
        end

        module Recoverable
            handle_asynchronously :send_reset_password_instructions
        end

        module Lockable
            handle_asynchronously :send_unlock_instructions
        end
    end
  end
link|improve this answer
3  
Add that code in some file.rb in config/initializers directory. – Zabba Mar 15 '11 at 8:16
feedback

I found that none of the above worked for me. I'm using Devise 2.0.4 and Rails 3.2.2 with delayed_job_active_record 0.3.2

The way devise actually talks about doing something like this in the comments in the code is to override the methods in the User class. Thus, I solved it like so, and it works perfectly:

app/models/User.rb

def send_on_create_confirmation_instructions
  Devise::Mailer.delay.confirmation_instructions(self)
end
def send_reset_password_instructions
  Devise::Mailer.delay.reset_password_instructions(self)
end
def send_unlock_instructions
  Devise::Mailer.delay.unlock_instructions(self)
end
link|improve this answer
over-riding these methods clobbers other functionality... it seemed to work, but did not set the reset_password_token on the user model see my solution – fringd May 15 at 20:17
feedback

I'm not sure Devise provides an easy way to do backgrounding of email delivery. However there are ways to be able to do that with DelayedJoy. DelyedJob provides a function "handle_asynchronously" which if injected into the DeviseMailer can ensure that deliveries happen in the background.

Try this in your config/application.rb

config.after_initialize do 
  ::DeviseMailer.handle_asynchronously :deliver_confirmation_instructions 
  # or
  ::DeviseMailer.handle_asynchronously :deliver!
end

You will need to experiment with that. You could also try to inherit the DeviseMailer and set it to deliver asynchronously in an initializer in config/initializer/devise_mailer_setup.rb or something to that effect.

link|improve this answer
feedback

I use the delayed_job_mailer plugin to accomplish this in Rails 2 apps. Not sure if it works with Rails 3.

link|improve this answer
feedback

Not sure why you need to authenticate any of the delayed_job tasks. Just have the Devise authenticated controller actions queue the email delivery to a library method.

link|improve this answer
feedback

this is the thing that worked for me:

in app/models/user.rb

  # after your devise declarations
  handle_asynchronously :send_reset_password_instructions
  handle_asynchronously :send_confirmation_instructions
  handle_asynchronously :send_on_create_confirmation_instructions

you may not need all of them depending on which devise modules you are including

link|improve this answer
feedback

I have generally found it best to avoid any and all background-job task managers available for Ruby and Rails, period. They suck.

Instead, I use crontab which is an ancient program and very good at its job. Just make a script to do your dirty work every so often and tell crontab to run it at the right times using rails runner. This keeps those pesky long-running tasks outside the run-time of the rest of your Rails application, but you still have access to the database and the whole Rails stack if you want/need it.

link|improve this answer
4  
I disagree with the claim that "any and all background-job task managers" suck. Ruby Toolbox has a nice comparison on queueing options for Ruby: ruby-toolbox.com/categories/queueing.html – David James Jan 3 '11 at 1:24
1  
So say you have an import that puts new products or new info on products into you app. Now the new products need generate some metadata or what not. Are you going to add a flag to the products table so your cronjob can pick up on those items? How often do you run that cronjob? Every ten minutes? What if one execution run takes longer than 10 min. You'll have competing processes running. Seems more like what ever you try to hack up with crontab will just end up being a poor-mans-implementation of a job queue. Better of using a dedicated queue that won't crud up your database schema and models. – unimatrixzxero Nov 30 '11 at 16:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.