You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since sending email synchronously is not a good idea, you'll probably want to have Devise enqueuing it's notification emails for background processing.
Although Devise doesn't support this out of the box you can achieve it easily by using the devise-async gem.
To do so, first add it to your Gemfile:
gem"devise-async"
Then tell Devise to use the proxy mailer in config/initializers/devise.rb:
# Configure the class responsible to send e-mails.config.mailer="Devise::Async::Proxy"
And last but not least, set your queuing backend by creating config/initializers/devise_async.rb: