2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-01-16 23:42:26 +01:00
|
|
|
# Preview all emails at http://localhost:3000/rails/mailers/super_admin_mailer
|
|
|
|
class SuperAdminMailerPreview < ActionMailer::Preview
|
|
|
|
def dolist_report
|
|
|
|
SuperAdminMailer.dolist_report("you@beta.gouv.fr", Rails.root.join("spec/fixtures/files/groupe_avec_caracteres_speciaux.csv"))
|
|
|
|
end
|
|
|
|
end
|