houdini/lib/fetch/fetch_nonprofit_email.rb

13 lines
303 B
Ruby
Raw Normal View History

module FetchNonprofitEmail
def self.with_charge charge
nonprofit = charge.nonprofit
nonprofit.email.blank? ? Settings.mailer.email : nonprofit.email
end
def self.with_donation donation
nonprofit = donation.nonprofit
nonprofit.email.blank? ? Settings.mailer.email : nonprofit.email
end
end