Ammar Shah
Results
2
comments of
Ammar Shah
**Option 1:** The `deliver_later` method accepts a `queue` option: ```ruby # app/models/user.rb protected def send_devise_notification(notification, *args) devise_mailer.send(notification, self, *args).deliver_later(queue: 'mailers') end ``` **Option 2:** You can set this for all...
Looks like it was an issue with openssl 1.1. It worked when I ran the following commands, `rvm get master` `rvm reload` `rvm pkg install openssl` `rvm reinstall all --force`