Is there a way to create a after_confirmation :do_something ?
after_confirmation :do_something
The goal is to send an e-mail after the user confirms using Devise :confirmable
:confirmable
I don't see that callback too, maybe you can try to override the confirmation method and call your callback there.
def send_confirmation_instructions(attributes={}) super(attributes) your_method_here end