I have a Rails 4 application set up to use Devise, and I\'m running a problem with password resets. I have the mailer set up, and the password reset email sends fine. The li
It may also be worth noting (in addition to @doctororange's post ablve) the following if you are using a custom confirmation mailer view.
The link in the view has also changed here. This is the NEW link code:
<%= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token) %>
This is the OLD link code:
<%= link_to 'Confirm my account', user_confirmation_url(@resource, :confirmation_token => @resource.confirmation_token) %>