2015-12-15 11:02:07 +01:00
|
|
|
|
class NotificationMailer < ApplicationMailer
|
2017-05-11 18:24:43 +02:00
|
|
|
|
default to: Proc.new { @user.email }
|
2017-03-04 09:46:38 +01:00
|
|
|
|
|
2017-10-13 18:35:12 +02:00
|
|
|
|
after_action :create_commentaire_for_notification, only: [:send_notification, :send_dossier_received]
|
|
|
|
|
|
|
|
|
|
def send_dossier_received(dossier_id)
|
|
|
|
|
dossier = Dossier.find(dossier_id)
|
|
|
|
|
send_notification(dossier, dossier.procedure.received_mail_template)
|
|
|
|
|
end
|
2017-05-11 18:07:37 +02:00
|
|
|
|
|
2017-06-09 22:29:48 +02:00
|
|
|
|
def send_notification(dossier, mail_template, attestation = nil)
|
2017-03-05 20:20:29 +01:00
|
|
|
|
vars_mailer(dossier)
|
|
|
|
|
|
2017-05-27 01:18:56 +02:00
|
|
|
|
@object = mail_template.object_for_dossier dossier
|
2017-05-11 18:07:37 +02:00
|
|
|
|
@body = mail_template.body_for_dossier dossier
|
2017-03-05 20:20:29 +01:00
|
|
|
|
|
2017-06-09 22:29:48 +02:00
|
|
|
|
if attestation.present?
|
|
|
|
|
attachments['attestation.pdf'] = attestation
|
|
|
|
|
end
|
|
|
|
|
|
2017-05-27 01:18:56 +02:00
|
|
|
|
mail(subject: @object) { |format| format.html { @body } }
|
2017-03-05 20:20:29 +01:00
|
|
|
|
end
|
|
|
|
|
|
2017-10-11 15:36:40 +02:00
|
|
|
|
def send_draft_notification(dossier)
|
|
|
|
|
vars_mailer(dossier)
|
|
|
|
|
|
|
|
|
|
@object = "Retrouvez votre brouillon pour la démarche : #{dossier.procedure.libelle}"
|
|
|
|
|
|
|
|
|
|
mail(subject: @object)
|
|
|
|
|
end
|
|
|
|
|
|
2017-05-27 01:19:33 +02:00
|
|
|
|
def new_answer(dossier)
|
2017-04-06 18:16:11 +02:00
|
|
|
|
send_mail dossier, "Nouveau message pour votre dossier TPS nº #{dossier.id}"
|
2015-12-15 11:41:50 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
2017-05-11 18:07:37 +02:00
|
|
|
|
def create_commentaire_for_notification
|
|
|
|
|
Commentaire.create(
|
|
|
|
|
dossier: @dossier,
|
2017-05-12 14:35:57 +02:00
|
|
|
|
email: I18n.t("dynamics.contact_email"),
|
2017-05-27 01:18:56 +02:00
|
|
|
|
body: ["[#{@object}]", @body].join("<br><br>")
|
2017-05-11 18:07:37 +02:00
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
|
2017-05-27 01:19:33 +02:00
|
|
|
|
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
|
|
|
|
|
|
2017-05-27 01:19:33 +02:00
|
|
|
|
def send_mail(dossier, subject)
|
2015-12-15 11:41:50 +01:00
|
|
|
|
vars_mailer dossier
|
2015-12-15 11:02:07 +01:00
|
|
|
|
|
2017-03-04 09:46:38 +01:00
|
|
|
|
mail(subject: subject)
|
2015-12-15 11:02:07 +01:00
|
|
|
|
end
|
|
|
|
|
end
|