# -*- coding: utf-8 -*-
class EmployeeMailer < ActionMailer::Base
  

def password_reset(user)
  @user = user
  subject    'Смена пароля'
  from       'info@allnets.pro'
  recipients  [user.email]
  sent_on    Time.now
  body :to => user.email, :subject => "Смена пароля"
end


end
