2018-11-20 11:57:51 +01:00
|
|
|
# Preview all emails at http://localhost:3000/rails/mailers/notification_mailer
|
|
|
|
|
2018-11-20 11:50:25 +01:00
|
|
|
# A Notification is attached as a Comment to the relevant discussion,
|
|
|
|
# then sent by email to the user.
|
|
|
|
#
|
|
|
|
# The subject and body of a Notification can be customized by each demarche.
|
2018-11-20 11:57:51 +01:00
|
|
|
#
|
2015-12-15 11:02:07 +01:00
|
|
|
class NotificationMailer < ApplicationMailer
|
2019-07-22 15:49:11 +02:00
|
|
|
include ActionView::Helpers::SanitizeHelper
|
|
|
|
|
2021-04-29 19:10:22 +02:00
|
|
|
before_action :set_dossier
|
|
|
|
after_action :create_commentaire_for_notification
|
2021-05-01 12:20:24 +02:00
|
|
|
|
2019-04-11 12:23:40 +02:00
|
|
|
helper ServiceHelper
|
2019-07-22 15:21:05 +02:00
|
|
|
helper MailerHelper
|
2019-04-11 12:23:40 +02:00
|
|
|
|
2019-07-22 15:49:11 +02:00
|
|
|
layout 'mailers/notifications_layout'
|
2019-09-10 13:29:06 +02:00
|
|
|
default from: NO_REPLY_EMAIL
|
2019-07-22 15:49:11 +02:00
|
|
|
|
2021-04-29 19:10:22 +02:00
|
|
|
def send_notification
|
|
|
|
@service = @dossier.procedure.service
|
|
|
|
@logo_url = attach_logo(@dossier.procedure)
|
|
|
|
@rendered_template = sanitize(@body)
|
2022-05-10 16:23:22 +02:00
|
|
|
attachments[@attachment[:filename]] = @attachment[:content] if @attachment.present?
|
2018-05-31 00:04:06 +02:00
|
|
|
|
2021-09-01 18:51:29 +02:00
|
|
|
I18n.with_locale(@dossier.user_locale) do
|
|
|
|
mail(subject: @subject, to: @email, template_name: 'send_notification')
|
|
|
|
end
|
2018-05-25 23:08:47 +02:00
|
|
|
end
|
2017-10-11 15:36:40 +02:00
|
|
|
|
2021-04-29 19:10:22 +02:00
|
|
|
def self.send_en_construction_notification(dossier)
|
|
|
|
with(dossier: dossier, state: Dossier.states.fetch(:en_construction)).send_notification
|
2018-05-25 23:08:47 +02:00
|
|
|
end
|
|
|
|
|
2021-04-29 19:10:22 +02:00
|
|
|
def self.send_en_instruction_notification(dossier)
|
|
|
|
with(dossier: dossier, state: Dossier.states.fetch(:en_instruction)).send_notification
|
2018-05-25 23:08:47 +02:00
|
|
|
end
|
|
|
|
|
2021-04-29 19:10:22 +02:00
|
|
|
def self.send_accepte_notification(dossier)
|
|
|
|
with(dossier: dossier, state: Dossier.states.fetch(:accepte)).send_notification
|
2017-10-11 15:36:40 +02:00
|
|
|
end
|
|
|
|
|
2021-04-29 19:10:22 +02:00
|
|
|
def self.send_refuse_notification(dossier)
|
|
|
|
with(dossier: dossier, state: Dossier.states.fetch(:refuse)).send_notification
|
2021-05-01 12:20:24 +02:00
|
|
|
end
|
|
|
|
|
2021-04-29 19:10:22 +02:00
|
|
|
def self.send_sans_suite_notification(dossier)
|
|
|
|
with(dossier: dossier, state: Dossier.states.fetch(:sans_suite)).send_notification
|
|
|
|
end
|
2018-05-25 23:08:47 +02:00
|
|
|
|
2021-04-29 19:10:22 +02:00
|
|
|
private
|
2018-05-25 23:08:47 +02:00
|
|
|
|
2021-04-29 19:10:22 +02:00
|
|
|
def set_dossier
|
|
|
|
@dossier = params[:dossier]
|
2018-05-30 17:12:06 +02:00
|
|
|
|
2022-12-21 17:18:19 +01:00
|
|
|
if @dossier.skip_user_notification_email?
|
2021-04-29 19:10:22 +02:00
|
|
|
mail.perform_deliveries = false
|
|
|
|
else
|
2021-09-01 18:51:29 +02:00
|
|
|
I18n.with_locale(@dossier.user_locale) do
|
|
|
|
mail_template = @dossier.procedure.mail_template_for(params[:state])
|
|
|
|
|
|
|
|
@email = @dossier.user_email_for(:notification)
|
|
|
|
@subject = mail_template.subject_for_dossier(@dossier)
|
|
|
|
@body = mail_template.body_for_dossier(@dossier)
|
|
|
|
@actions = mail_template.actions_for_dossier(@dossier)
|
2022-05-10 16:23:22 +02:00
|
|
|
@attachment = mail_template.attachment_for_dossier(@dossier)
|
2021-09-01 18:51:29 +02:00
|
|
|
end
|
2021-04-29 19:10:22 +02:00
|
|
|
end
|
2018-05-25 23:08:47 +02:00
|
|
|
end
|
|
|
|
|
2021-04-29 19:10:22 +02:00
|
|
|
def create_commentaire_for_notification
|
|
|
|
body = ["[#{@subject}]", @body].join("<br><br>")
|
2021-11-30 18:56:12 +01:00
|
|
|
CommentaireService.create!(CONTACT_EMAIL, @dossier, body: body)
|
2017-05-11 18:07:37 +02:00
|
|
|
end
|
2015-12-15 11:02:07 +01:00
|
|
|
end
|