failed_emails.rb 238 B

123456789
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class SystemReport::Plugin::FailedEmails < SystemReport::Plugin
  3. DESCRIPTION = __('Count of failed emails').freeze
  4. def fetch
  5. FailedEmail.count
  6. end
  7. end