6 lines
144 B
Ruby
6 lines
144 B
Ruby
class VerificationFailedJob < EmailJob
|
|
|
|
def perform(nonprofit)
|
|
NonprofitMailer.failed_verification_notice(onprofit).deliver_now
|
|
end
|
|
end
|