Sha256: 7cc67be37467be36055ec40503b02ca114e9504ff02c83d0afd8cef0c727fd4f
Contents?: true
Size: 1.1 KB
Versions: 67
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true module Spree class CartonMailer < BaseMailer # Send an email to customers to notify that an individual carton has been # shipped. If a carton contains items from multiple orders then this will be # called with that carton one time for each order. # # @option options carton [Spree::Carton] the shipped carton # @option options order [Spree::Order] one of the orders with items in the carton # @option options resend [Boolean] indicates whether the email is a 'resend' (e.g. # triggered by the admin "resend" button) # @return [Mail::Message] def shipped_email(options) @order = options.fetch(:order) @carton = options.fetch(:carton) @manifest = @carton.manifest_for_order(@order) options = { resend: false }.merge(options) @store = @order.store subject = (options[:resend] ? "[#{t('spree.resend').upcase}] " : '') subject += "#{@store.name} #{t('spree.shipment_mailer.shipped_email.subject')} ##{@order.number}" mail(to: @order.email, from: from_address(@store), subject: subject) end end end
Version data entries
67 entries across 67 versions & 1 rubygems