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