Files
fizzy/test/mailers/previews/notification/bundle_mailer_preview.rb
T
2025-11-20 10:49:29 +01:00

8 lines
226 B
Ruby

class Notification::BundleMailerPreview < ActionMailer::Preview
def notification
bundle = Notification::Bundle.all.sample
Current.account = bundle.account
Notification::BundleMailer.notification bundle
end
end