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

10 lines
253 B
Ruby
Raw Normal View History

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