demarches-normaliennes/spec/mailers/previews/notification_mailer_preview.rb

10 lines
291 B
Ruby
Raw Normal View History

class NotificationMailerPreview < ActionMailer::Preview
2017-03-07 16:23:44 +01:00
def send_notification
NotificationMailer.send_notification(Dossier.last, Dossier.last.procedure.initiated_mail_template)
end
def send_draft_notification
NotificationMailer.send_draft_notification(Dossier.last)
end
end