Using Rails and Devise, I want to send a welcome email on sign up.

Viewed 6107

How can I send a welcoming email to the user when they sign up? I'm using the Devise gem for authentication. SMTP is already set up. I just need to understand how to extend devise to send emails.

NOTE - this is not confirmation email!

UPD Solution:

class User < ActiveRecord::Base
  after_create :send_welcome_email 

  private

    def send_welcome_email
      UserMailer.deliver_welcome_email(self)
    end
end
2 Answers
Related