Sha256: 3d11aa5e96d7c082f592afdf635665cb8e4f59c176c694f2154a0b3c5652d77f

Contents?: true

Size: 284 Bytes

Versions: 11

Compression:

Stored size: 284 Bytes

Contents

module Shoppe
  class UserMailer < ActionMailer::Base
    default :from => "#{Shoppe.config[:store_name]} <#{Shoppe.config[:email_address]}>"

    def new_password(user)
      @user = user
      mail :to => user.email_address, :subject => "Your new Shoppe password"
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
shoppe-0.0.15 app/mailers/shoppe/user_mailer.rb
shoppe-0.0.14 app/mailers/shoppe/user_mailer.rb
shoppe-0.0.13 app/mailers/shoppe/user_mailer.rb
shoppe-0.0.12 app/mailers/shoppe/user_mailer.rb
shoppe-0.0.11 app/mailers/shoppe/user_mailer.rb
shoppe-0.0.10 app/mailers/shoppe/user_mailer.rb
shoppe-0.0.9 app/mailers/shoppe/user_mailer.rb
shoppe-0.0.8 app/mailers/shoppe/user_mailer.rb
shoppe-0.0.7 app/mailers/shoppe/user_mailer.rb
shoppe-0.0.6 app/mailers/shoppe/user_mailer.rb
shoppe-0.0.5 app/mailers/shoppe/user_mailer.rb