demarches-normaliennes/app/mailers/notification_mailer.rb

83 lines
2.7 KiB
Ruby
Raw Normal View History

# Preview all emails at http://localhost:3000/rails/mailers/notification_mailer
# 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.
#
2015-12-15 11:02:07 +01:00
class NotificationMailer < ApplicationMailer
include ActionView::Helpers::SanitizeHelper
2021-04-29 19:10:22 +02:00
before_action :set_dossier
before_action :set_services_publics_plus, only: :send_notification
2021-04-29 19:10:22 +02:00
after_action :create_commentaire_for_notification
2021-05-01 12:20:24 +02:00
helper ServiceHelper
2019-07-22 15:21:05 +02:00
helper MailerHelper
layout 'mailers/notifications_layout'
default from: NO_REPLY_EMAIL
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, scrubber: Sanitizers::MailScrubber.new)
attachments[@attachment[:filename]] = @attachment[:content] if @attachment.present?
2018-05-31 00:04:06 +02:00
I18n.with_locale(@dossier.user_locale) do
mail(subject: @subject, to: @email, template_name: 'send_notification')
end
end
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
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
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
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
2021-04-29 19:10:22 +02:00
private
def set_services_publics_plus
return unless Dossier::TERMINE.include?(params[:state])
@services_publics_plus_url = ENV['SERVICES_PUBLICS_PLUS_URL'].presence
end
2021-04-29 19:10:22 +02:00
def set_dossier
@dossier = params[:dossier]
2018-05-30 17:12:06 +02:00
if @dossier.skip_user_notification_email?
2021-04-29 19:10:22 +02:00
mail.perform_deliveries = false
else
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)
@attachment = mail_template.attachment_for_dossier(@dossier)
end
2021-04-29 19:10:22 +02:00
end
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)
end
2015-12-15 11:02:07 +01:00
end