Merge pull request #3075 from betagouv/improve-emails
Petites améliorations sur les emails de notification
This commit is contained in:
commit
b015d1ca27
3 changed files with 11 additions and 10 deletions
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
%p
|
%p
|
||||||
Pour le consulter, merci de vous rendre sur
|
Pour le consulter, merci de vous rendre sur
|
||||||
= messagerie_dossier_url(@dossier)
|
= link_to messagerie_dossier_url(@dossier), messagerie_dossier_url(@dossier), target: '_blank'
|
||||||
|
|
||||||
%p
|
%p
|
||||||
Bonne journée,
|
Bonne journée,
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
= yield
|
= yield
|
||||||
|
|
||||||
%p ---
|
%footer
|
||||||
|
%p
|
||||||
%p.footer
|
—
|
||||||
%strong
|
%br
|
||||||
Merci de ne pas répondre à cet email. Pour vous adresser à votre administration, passez directement par votre
|
%strong
|
||||||
= succeed '.' do
|
Merci de ne pas répondre à cet email. Pour vous adresser à votre administration, passez directement par votre
|
||||||
= link_to 'messagerie', messagerie_dossier_url(@dossier), target: '_blank'
|
= succeed '.' do
|
||||||
|
= link_to 'messagerie', messagerie_dossier_url(@dossier), target: '_blank'
|
||||||
|
|
|
@ -34,7 +34,7 @@ RSpec.describe NotificationMailer, type: :mailer do
|
||||||
|
|
||||||
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 include(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 { 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
|
||||||
|
@ -50,7 +50,7 @@ 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 include(email_template.body)
|
expect(mail.body).to include(email_template.body)
|
||||||
expect(mail.body).to have_selector('.footer')
|
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