2017-01-23 15:41:09 +01:00
|
|
|
class NotificationMailerPreview < ActionMailer::Preview
|
2017-03-07 16:23:44 +01:00
|
|
|
def send_notification
|
2018-05-25 23:08:47 +02:00
|
|
|
NotificationMailer.send_initiated_notification(Dossier.last)
|
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
|