theseus/app/mailers/usps/payment_account_mailer.rb
2025-05-31 23:25:41 -04:00

10 lines
341 B
Ruby

class USPS::PaymentAccountMailer < GenericTextMailer
def get_your_eps_racks_up(accounts:)
@count = accounts.length
@subject = "[theseus] [usps] #{@count} EPS #{"account".pluralize(@count)} #{"is".pluralize(@count)} broke"
@recipient = "nora@hackclub.com"
@accounts = accounts
mail to: "dinobox@hackclub.com"
end
end