Recently I added the confirmable
module to my User class. I already have a quite nice mailing system (Sidekiq, Sendgrid...) in my app, so I created my own "confirm account" mail. The problem now is to disable Devise from sending its default email. Is there any way to completely disable the Devise mailing system?
Added:
- I want to maintain the
confirmable
module, as I am using its attributes and routes. - I can't use
skip_confirmation!
because I want the users to confirm their account. - I just want to disable
Devise
mails.
bundle open <gem>
to take a look around. – Tichonn