Sha256: 9e8eb0256ae9237ccf3a3fdcaf83edd453c5b9cf53f242a8a7a8a840a993973e
Contents?: true
Size: 1.29 KB
Versions: 5
Compression:
Stored size: 1.29 KB
Contents
require "login/mail_config" class PasswordMailer < ActionMailer::Base include Login::MailConfig class << self def handle_user_password_reset_requested!(event) reset_password_email( :user => event.object, :from => site(event.source.site).email_from, :reset_link => password_reset_link(event.source, event.token), :token => event.token ).deliver_now end def handle_user_password_updated!(event) updated_password_email( :user => event.object, :from => site(event.source.site).email_from ).deliver_now end private def password_reset_link(controller, token) controller.send(:url_for, :action => 'edit', :token => token) end end def reset_password_email(attributes = {}) @user = attributes[:user] @reset_link = attributes[:reset_link] @token = attributes[:token] mail({ to: attributes[:user].email, from: attributes[:from], subject: I18n.t(:'adva.passwords.notifications.reset_password.subject'), }) end def updated_password_email(attributes = {}) @user = attributes[:user] mail({ to: attributes[:user].email, from: attributes[:from], subject: I18n.t(:'adva.passwords.notifications.password_updated.subject'), }) end end
Version data entries
5 entries across 5 versions & 1 rubygems