mailer: add layout for notifications emails
This commit is contained in:
parent
2a5a8cf621
commit
b2f2e75f43
9 changed files with 21 additions and 39 deletions
|
@ -48,7 +48,13 @@ class NotificationMailer < ApplicationMailer
|
||||||
|
|
||||||
create_commentaire_for_notification(dossier, subject, body)
|
create_commentaire_for_notification(dossier, subject, body)
|
||||||
|
|
||||||
mail(subject: subject, to: email) { |format| format.html { body } }
|
@dossier = dossier
|
||||||
|
|
||||||
|
mail(subject: subject, to: email) do |format|
|
||||||
|
# rubocop:disable Rails/OutputSafety
|
||||||
|
format.html { render(html: body.html_safe, layout: 'mailers/notification') }
|
||||||
|
# rubocop:enable Rails/OutputSafety
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def create_commentaire_for_notification(dossier, subject, body)
|
def create_commentaire_for_notification(dossier, subject, body)
|
||||||
|
|
9
app/views/layouts/mailers/notification.html.haml
Normal file
9
app/views/layouts/mailers/notification.html.haml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
= yield
|
||||||
|
|
||||||
|
%p ---
|
||||||
|
|
||||||
|
%p.footer
|
||||||
|
%strong
|
||||||
|
Merci de ne pas répondre à cet email. Pour vous adresser à votre administration, passez directement par votre
|
||||||
|
= succeed '.' do
|
||||||
|
= link_to 'messagerie', users_dossier_recapitulatif_url(@dossier), target: '_blank'
|
|
@ -12,9 +12,3 @@
|
||||||
|
|
||||||
%p
|
%p
|
||||||
L'équipe demarches-simplifiees.fr
|
L'équipe demarches-simplifiees.fr
|
||||||
|
|
||||||
%p
|
|
||||||
—
|
|
||||||
|
|
||||||
%p
|
|
||||||
Merci de ne pas répondre à cet email. Postez directement vos questions dans votre dossier sur la plateforme.
|
|
||||||
|
|
|
@ -15,9 +15,3 @@
|
||||||
|
|
||||||
%p
|
%p
|
||||||
L'équipe demarches-simplifiees.fr
|
L'équipe demarches-simplifiees.fr
|
||||||
|
|
||||||
%p
|
|
||||||
—
|
|
||||||
|
|
||||||
%p
|
|
||||||
Merci de ne pas répondre à cet email. Postez directement vos questions dans votre dossier sur la plateforme.
|
|
||||||
|
|
|
@ -12,9 +12,3 @@
|
||||||
|
|
||||||
%p
|
%p
|
||||||
L'équipe demarches-simplifiees.fr
|
L'équipe demarches-simplifiees.fr
|
||||||
|
|
||||||
%p
|
|
||||||
—
|
|
||||||
|
|
||||||
%p
|
|
||||||
Merci de ne pas répondre à cet email. Postez directement vos questions dans votre dossier sur la plateforme.
|
|
||||||
|
|
|
@ -9,9 +9,3 @@
|
||||||
|
|
||||||
%p
|
%p
|
||||||
L'équipe demarches-simplifiees.fr
|
L'équipe demarches-simplifiees.fr
|
||||||
|
|
||||||
%p
|
|
||||||
—
|
|
||||||
|
|
||||||
%p
|
|
||||||
Merci de ne pas répondre à cet email. Postez directement vos questions dans votre dossier sur la plateforme.
|
|
||||||
|
|
|
@ -15,9 +15,3 @@
|
||||||
|
|
||||||
%p
|
%p
|
||||||
L'équipe demarches-simplifiees.fr
|
L'équipe demarches-simplifiees.fr
|
||||||
|
|
||||||
%p
|
|
||||||
—
|
|
||||||
|
|
||||||
%p
|
|
||||||
Merci de ne pas répondre à cet email. Postez directement vos questions dans votre dossier sur la plateforme.
|
|
||||||
|
|
|
@ -15,9 +15,3 @@
|
||||||
|
|
||||||
%p
|
%p
|
||||||
L'équipe demarches-simplifiees.fr
|
L'équipe demarches-simplifiees.fr
|
||||||
|
|
||||||
%p
|
|
||||||
—
|
|
||||||
|
|
||||||
%p
|
|
||||||
Merci de ne pas répondre à cet email. Postez directement vos questions dans votre dossier sur la plateforme.
|
|
||||||
|
|
|
@ -33,7 +33,9 @@ RSpec.describe NotificationMailer, type: :mailer do
|
||||||
end
|
end
|
||||||
|
|
||||||
it { expect(mail.subject).to eq(email_template.subject_for_dossier) }
|
it { expect(mail.subject).to eq(email_template.subject_for_dossier) }
|
||||||
it { expect(mail.body).to eq(email_template.body_for_dossier) }
|
it { expect(mail.body).to include(email_template.body_for_dossier) }
|
||||||
|
it { expect(mail.body).to have_selector('.footer') }
|
||||||
|
|
||||||
it_behaves_like "create a commentaire not notified"
|
it_behaves_like "create a commentaire not notified"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -47,7 +49,8 @@ RSpec.describe NotificationMailer, type: :mailer do
|
||||||
|
|
||||||
it do
|
it do
|
||||||
expect(mail.subject).to eq(email_template.subject)
|
expect(mail.subject).to eq(email_template.subject)
|
||||||
expect(mail.body).to eq(email_template.body)
|
expect(mail.body).to include(email_template.body)
|
||||||
|
expect(mail.body).to have_selector('.footer')
|
||||||
end
|
end
|
||||||
|
|
||||||
it_behaves_like "create a commentaire not notified"
|
it_behaves_like "create a commentaire not notified"
|
||||||
|
|
Loading…
Reference in a new issue