mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-02 21:57:17 +00:00
8 lines
201 B
Ruby
8 lines
201 B
Ruby
# frozen_string_literal: true
|
|
|
|
class OrderMailerPreview < ActionMailer::Preview
|
|
def confirm_email_for_customer
|
|
Spree::OrderMailer.confirm_email_for_customer(Spree::Order.complete.last)
|
|
end
|
|
end
|