Sha256: 126fa7f0b29ad1a1884ff764dbcb1f5d1f2cbf59ca7c3ccb36c1f55705d87ad3

Contents?: true

Size: 485 Bytes

Versions: 5

Compression:

Stored size: 485 Bytes

Contents

module Clearance
  module App
    module Models
      module ClearanceMailer

        def change_password(user)
          from       DO_NOT_REPLY
          recipients user.email
          subject    "Change your password"
          body       :user => user
        end

        def confirmation(user)
          from       DO_NOT_REPLY
          recipients user.email
          subject   "Account confirmation"
          body      :user => user
        end

      end
    end
  end
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
jeffrafter-clearance-0.5.4 lib/clearance/app/models/clearance_mailer.rb
kellyfelkins-clearance-0.5.6 lib/clearance/app/models/clearance_mailer.rb
thoughtbot-clearance-0.5.3 lib/clearance/app/models/clearance_mailer.rb
thoughtbot-clearance-0.5.4 lib/clearance/app/models/clearance_mailer.rb
thoughtbot-clearance-0.5.6 lib/clearance/app/models/clearance_mailer.rb