demarches-normaliennes/app/mailers/notification_mailer.rb

31 lines
642 B
Ruby
Raw Normal View History

2015-12-15 11:02:07 +01:00
class NotificationMailer < ApplicationMailer
default from: 'tps@apientreprise.fr',
to: Proc.new { @user.email }
def send_notification dossier, email
vars_mailer(dossier)
obj = email.object_for_dossier dossier
body = email.body_for_dossier dossier
mail(subject: obj) { |format| format.html { body } }
end
2015-12-15 11:02:07 +01:00
def new_answer dossier
send_mail dossier, "Nouveau message pour votre dossier TPS N°#{dossier.id}"
2015-12-15 11:41:50 +01:00
end
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
mail(subject: subject)
2015-12-15 11:02:07 +01:00
end
end