How can I send a welcome email to newly registered users in Rails using Devise?
I am using Devise on Rails and I'm wondering if there is a hook or a filter that I can use to add a bit of code to Devise's user registration process and send a welcome email to the user after an account has been created. Without Devise it would be something like this... respond_to do |format| if @user.save Notifier.welcome_email(@user).deliver # <======= ... The next most popular answer assumes you're using using Devise's :confirmable module, which I'm not. I didn't like the other solutions because you have to use model callbacks, which will always send welcome emails even when you create his