17 lines
343 B
Ruby
17 lines
343 B
Ruby
class StudentMails < ActionMailer::Base
|
|
layout 'mail'
|
|
|
|
default from: "Geneviève Gagos <contact@ecole-eft-france.fr>"
|
|
|
|
def reset_password(student_user, options = {})
|
|
@student_user = student_user
|
|
@options = options
|
|
mail(:to => student_user.email, :subject => "Réinitialisation de votre mot de passe.")
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|