5 lines
143 B
Ruby
5 lines
143 B
Ruby
class NotificationMailerPreview < ActionMailer::Preview
|
|
def dossier_received
|
|
NotificationMailer.dossier_received(Dossier.last)
|
|
end
|
|
end
|