emails/app/models/spree/emails/reimbursement_decorator.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Spree
  module Emails
    module ReimbursementDecorator
      def send_reimbursement_email
        Spree::ReimbursementMailer.reimbursement_email(id).deliver_later
      end

      ::Spree::Reimbursement.prepend(self)
    end
  end
end