# File app/models/notifier.rb, line 27
  def reset_password_email( user, password )
  # Email header info MUST be added here
    recipients user.email
    from  "NoReply@northwestern.edu"
    subject "New Password Information"    
    # Email body substitutions go here
    body :first_name => user.first_name, :last_name => user.last_name, :password => password
  end