demarches-normaliennes/app/mailers/notification_mailer.rb

28 lines
636 B
Ruby
Raw Normal View History

2015-12-15 11:02:07 +01:00
class NotificationMailer < ApplicationMailer
def new_answer dossier
2015-12-15 11:41:50 +01:00
send_mail dossier, "Nouveau commentaire pour votre dossier TPS N°#{dossier.id}"
end
def dossier_validated dossier
send_mail dossier, "Votre dossier TPS N°#{dossier.id} a été validé"
end
2015-12-17 10:06:40 +01:00
def dossier_submitted dossier
send_mail dossier, "Votre dossier TPS N°#{dossier.id} a été déposé"
end
2015-12-15 11:41:50 +01:00
private
def vars_mailer dossier
2015-12-15 11:02:07 +01:00
@dossier = dossier
2015-12-15 11:41:50 +01:00
@user = dossier.user
end
def send_mail dossier, subject
vars_mailer dossier
2015-12-15 11:02:07 +01:00
2015-12-15 11:41:50 +01:00
mail(from: "tps@apientreprise.fr", to: @user.email,
subject: subject)
2015-12-15 11:02:07 +01:00
end
end