zammad/app/models/system_report/plugin/failed_emails.rb
2026-01-02 15:41:09 +02:00

9 lines
238 B
Ruby

# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
class SystemReport::Plugin::FailedEmails < SystemReport::Plugin
DESCRIPTION = __('Count of failed emails').freeze
def fetch
FailedEmail.count
end
end