6 lines
160 B
Ruby
6 lines
160 B
Ruby
class ExportSupporterNotesFailedJob < EmailJob
|
|
|
|
def perform(export)
|
|
ExportMailer.export_supporter_notes_failed_notification(export).deliver_now
|
|
end
|
|
end
|