mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-12 03:50:22 +00:00
12 lines
226 B
Ruby
12 lines
226 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'open_food_network/scope_variant_to_hub'
|
|
|
|
module Spree
|
|
class ShipmentPreview < ActionMailer::Preview
|
|
def shipped
|
|
ShipmentMailer.shipped_email(Shipment.last)
|
|
end
|
|
end
|
|
end
|