Sending a signup confirmation email with having to confirm using Devise

Posted by slythic on Stack Overflow See other posts from Stack Overflow or by slythic
Published on 2010-06-13T22:18:28Z Indexed on 2010/06/13 22:22 UTC
Read the original article Hit count: 303

Hi all,

I'm using devise to handle user authentication with my rails app. I'd like to allow my users to sign up and be instantly logged in and receive a confirmation email.

Devise has the Confirmable module which sends out an email but requires the user to open up their mail application, find the email and click a link which then leads them to the site again.

I'd like to just email the user a confirmation that they signed up and that's it.

Is there a way for devise to do this or do I need to resolve to handling ActionMailer myself (if so, is there a quick and non-complex example)?

Many thanks!
-Tony

© Stack Overflow or respective owner

Related posts about ruby-on-rails

Related posts about authentication