Sha256: 5198f186b7ad9c229a130d44190f95e5d5acb56855807c98b94e3debbc6764d8

Contents?: true

Size: 343 Bytes

Versions: 10

Compression:

Stored size: 343 Bytes

Contents

# Authenticate mailer.
#
# Handles password change requests.
class AuthenticateMailer < ActionMailer::Base
  def change_password(user)
    @user = user
    mail from: Authenticate.configuration.mailer_sender,
         to: @user.email,
         subject: I18n.t(:change_password, scope: [:authenticate, :models, :authenticate_mailer])
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
authenticate-0.7.3 app/mailers/authenticate_mailer.rb
authenticate-0.7.2 app/mailers/authenticate_mailer.rb
authenticate-0.7.1 app/mailers/authenticate_mailer.rb
authenticate-0.7.0 app/mailers/authenticate_mailer.rb
authenticate-0.6.1 app/mailers/authenticate_mailer.rb
authenticate-0.6.0 app/mailers/authenticate_mailer.rb
authenticate-0.5.0 app/mailers/authenticate_mailer.rb
authenticate-0.4.0 app/mailers/authenticate_mailer.rb
authenticate-0.3.3 app/mailers/authenticate_mailer.rb
authenticate-0.3.2 app/mailers/authenticate_mailer.rb