Sha256: be4ff28f2d92f939456d94a57e29427d5902901e0ded394f6a64bedc9b37f99d

Contents?: true

Size: 425 Bytes

Versions: 3

Compression:

Stored size: 425 Bytes

Contents

module Spree
  class Reimbursement < Spree::Base
    module Emails
      def send_reimbursement_email
        # you can overwrite this method in your application / extension to send out the confirmation email
        # or use `spree_emails` gem
        # YourEmailVendor.deliver_reimbursement_email(id) # `id` = ID of the Reimbursement being sent, you can also pass the entire object using `self`
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
spree_core-4.10.1 app/models/spree/reimbursement/emails.rb
spree_core-4.10.0 app/models/spree/reimbursement/emails.rb
spree_core-4.9.0 app/models/spree/reimbursement/emails.rb