Sha256: 3ba6442f45f5b51d0becdb7c7ef8b7aaba59404f95220ad9fca9af1c3760b694
Contents?: true
Size: 367 Bytes
Versions: 8
Compression:
Stored size: 367 Bytes
Contents
module QuoVadis class Notifier < ActionMailer::Base # Sends an email to <tt>user</tt> with a link to a page where they # can change their password. def change_password(user) @username = user.username @url = change_password_url user.token mail :to => user.email, :from => QuoVadis.from, :subject => QuoVadis.subject end end end
Version data entries
8 entries across 8 versions & 1 rubygems