houdini/app/mailers/payment_mailer.rb

28 lines
1.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2020-06-12 20:03:43 +00:00
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
class PaymentMailer < BaseMailer
# Send a donation receipt to a single admin
# or a ticket receipt
def resend_admin_receipt(payment_id, user_id)
payment = Payment.find(payment_id)
if payment.kind == 'Donation' || payment.kind == 'RecurringDonation'
PaymentNotificationEmailNonprofitJob.perform_later(payment.donation, User.find(user_id))
elsif payment.kind == 'Ticket'
return TicketMailer.receipt_admin(payment.donation.id, user_id).deliver_later
end
end
# Send a donation receipt to the donor
# or a ticket followup email to the supporter
def resend_donor_receipt(payment_id)
payment = Payment.find(payment_id)
if payment.kind == 'Donation' || payment.kind == 'RecurringDonation'
2019-11-07 18:35:38 +00:00
PaymentNotificationEmailDonorJob.perform_later payment.donation
elsif payment.kind == 'Ticket'
return TicketMailer.followup(payment.tickets.pluck(:id), payment.charge).deliver_later
end
end
end