2018-05-29 12:16:22 +02:00
|
|
|
# Preview all emails at http://localhost:3000/rails/mailers/dossier_mailer
|
|
|
|
class DossierMailerPreview < ActionMailer::Preview
|
2018-05-30 11:36:48 +02:00
|
|
|
def notify_deletion_to_user
|
|
|
|
DossierMailer.notify_deletion_to_user(DeletedDossier.last, "user@ds.fr")
|
|
|
|
end
|
|
|
|
|
|
|
|
def notify_deletion_to_administration
|
|
|
|
DossierMailer.notify_deletion_to_administration(DeletedDossier.last, "admin@ds.fr")
|
2018-05-29 12:16:22 +02:00
|
|
|
end
|
|
|
|
end
|