7 lines
195 B
Ruby
7 lines
195 B
Ruby
class NotificationMailerPreview < ActionMailer::Preview
|
|
|
|
def send_notification
|
|
NotificationMailer.send_notification(Dossier.last, Dossier.last.procedure.initiated_mail_template)
|
|
end
|
|
|
|
end
|