fix(mailer): hardcoded application name

This commit is contained in:
Colin Darie 2024-07-01 10:25:49 +02:00
parent 0d744a0eb7
commit 327ebf106f
No known key found for this signature in database
GPG key ID: 4FB865FDBCA4BCC4
3 changed files with 3 additions and 3 deletions

View file

@ -34,7 +34,7 @@ class UserMailerPreview < ActionMailer::Preview
end
def notify_after_closing
UserMailer.notify_after_closing([user])
UserMailer.notify_after_closing(user, "Cette démarche est close")
end
private