cce00e19c6
So that all mail arguments can be serialized
9 lines
253 B
Ruby
9 lines
253 B
Ruby
class NotificationMailerPreview < ActionMailer::Preview
|
|
def send_notification
|
|
NotificationMailer.send_initiated_notification(Dossier.last)
|
|
end
|
|
|
|
def send_draft_notification
|
|
NotificationMailer.send_draft_notification(Dossier.last)
|
|
end
|
|
end
|