mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 21:05:10 +00:00
10 lines
341 B
Ruby
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
|