Sha256: 44e78fd41184fa1085038428a201e33d1922e117e60f55f6e4af7f84893e1bab

Contents?: true

Size: 314 Bytes

Versions: 6

Compression:

Stored size: 314 Bytes

Contents

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

6 entries across 6 versions & 1 rubygems

Version Path
authenticate-0.3.1 app/mailers/authenticate_mailer.rb
authenticate-0.3.0 app/mailers/authenticate_mailer.rb
authenticate-0.2.3 app/mailers/authenticate_mailer.rb
authenticate-0.2.2 app/mailers/authenticate_mailer.rb
authenticate-0.2.1 app/mailers/authenticate_mailer.rb
authenticate-0.2.0 app/mailers/authenticate_mailer.rb