mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-08 22:56:06 +00:00
11 lines
255 B
Ruby
11 lines
255 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Preview all emails at http://localhost:3000/rails/mailers/report_mailer
|
|
class ReportMailerPreview < ActionMailer::Preview
|
|
def report_ready
|
|
ReportMailer.with(
|
|
blob: ReportBlob.last,
|
|
).report_ready
|
|
end
|
|
end
|