2017-01-23 15:41:09 +01:00
|
|
|
class NotificationMailerPreview < ActionMailer::Preview
|
2017-03-07 16:23:44 +01:00
|
|
|
def send_notification
|
2017-05-27 01:08:01 +02:00
|
|
|
NotificationMailer.send_notification(Dossier.last, Dossier.last.procedure.initiated_mail_template)
|
2017-01-23 15:41:09 +01:00
|
|
|
end
|
2017-10-11 15:36:40 +02:00
|
|
|
|
|
|
|
def send_draft_notification
|
|
|
|
NotificationMailer.send_draft_notification(Dossier.last)
|
|
|
|
end
|
2017-01-23 15:41:09 +01:00
|
|
|
end
|