houdini/app/jobs/refund_notification_donor_email_job.rb
2019-11-08 16:13:03 -06:00

6 lines
132 B
Ruby

class RefundNotificationDonorEmailJob < EmailJob
def perform(refund)
UserMailer.refund_receipt(refund).deliver_now
end
end