I want to confirm user emails, by sending them a link to click in the email body. I would like it to be something like GET /users/23/confirm/1234 . This would confirm user #23 with the verification key 1234.
I tried :
resources :users do
member do
match '/confirm/:token' => 'users#confirm'
end
end
But I'm unable to set up the link_to method appropriately in my email body. Any suggestions ? Thanks!