![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/magento/module-sales/Model/Order/Email/Sender/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Sender; use Magento\Framework\App\Area; use Magento\Framework\App\ObjectManager; use Magento\Payment\Helper\Data as PaymentHelper; use Magento\Sales\Model\Order; use Magento\Sales\Model\Order\Email\Container\ShipmentIdentity; use Magento\Sales\Model\Order\Email\Container\Template; use Magento\Sales\Model\Order\Email\Sender; use Magento\Sales\Model\Order\Shipment; use Magento\Sales\Model\ResourceModel\Order\Shipment as ShipmentResource; use Magento\Sales\Model\Order\Address\Renderer; use Magento\Framework\Event\ManagerInterface; use Magento\Framework\DataObject; use Magento\Store\Model\App\Emulation; /** * Sends order shipment email to the customer. * * @deprecated 102.1.0 since this class works only with the concrete model and no data interface * @see \Magento\Sales\Model\Order\Shipment\Sender\EmailSender * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ class ShipmentSender extends Sender { /** * @var PaymentHelper */ protected $paymentHelper; /** * @var ShipmentResource */ protected $shipmentResource; /** * Global configuration storage. * * @var \Magento\Framework\App\Config\ScopeConfigInterface */ protected $globalConfig; /** * @var Renderer */ protected $addressRenderer; /** * Application Event Dispatcher * * @var ManagerInterface */ protected $eventManager; /** * @var Emulation */ private $appEmulation; /** * @param Template $templateContainer * @param ShipmentIdentity $identityContainer * @param Order\Email\SenderBuilderFactory $senderBuilderFactory * @param \Psr\Log\LoggerInterface $logger * @param Renderer $addressRenderer * @param PaymentHelper $paymentHelper * @param ShipmentResource $shipmentResource * @param \Magento\Framework\App\Config\ScopeConfigInterface $globalConfig * @param ManagerInterface $eventManager * @param Emulation|null $appEmulation * * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( Template $templateContainer, ShipmentIdentity $identityContainer, \Magento\Sales\Model\Order\Email\SenderBuilderFactory $senderBuilderFactory, \Psr\Log\LoggerInterface $logger, Renderer $addressRenderer, PaymentHelper $paymentHelper, ShipmentResource $shipmentResource, \Magento\Framework\App\Config\ScopeConfigInterface $globalConfig, ManagerInterface $eventManager, Emulation $appEmulation = null ) { parent::__construct($templateContainer, $identityContainer, $senderBuilderFactory, $logger, $addressRenderer); $this->paymentHelper = $paymentHelper; $this->shipmentResource = $shipmentResource; $this->globalConfig = $globalConfig; $this->addressRenderer = $addressRenderer; $this->eventManager = $eventManager; $this->appEmulation = $appEmulation ?: ObjectManager::getInstance()->get(Emulation::class); } /** * Sends order shipment email to the customer. * * Email will be sent immediately in two cases: * * - if asynchronous email sending is disabled in global settings * - if $forceSyncMode parameter is set to TRUE * * Otherwise, email will be sent later during running of * corresponding cron job. * * @param Shipment $shipment * @param bool $forceSyncMode * @return bool * @throws \Exception */ public function send(Shipment $shipment, $forceSyncMode = false) { $shipment->setSendEmail($this->identityContainer->isEnabled()); if (!$this->globalConfig->getValue('sales_email/general/async_sending') || $forceSyncMode) { $order = $shipment->getOrder(); $this->identityContainer->setStore($order->getStore()); $this->appEmulation->startEnvironmentEmulation($order->getStoreId(), Area::AREA_FRONTEND, true); $transport = [ 'order' => $order, 'order_id' => $order->getId(), 'shipment' => $shipment, 'shipment_id' => $shipment->getId(), 'comment' => $shipment->getCustomerNoteNotify() ? $shipment->getCustomerNote() : '', 'billing' => $order->getBillingAddress(), 'payment_html' => $this->getPaymentHtml($order), 'store' => $order->getStore(), 'formattedShippingAddress' => $this->getFormattedShippingAddress($order), 'formattedBillingAddress' => $this->getFormattedBillingAddress($order), 'order_data' => [ 'customer_name' => $order->getCustomerName(), 'is_not_virtual' => $order->getIsNotVirtual(), 'email_customer_note' => $order->getEmailCustomerNote(), 'frontend_status_label' => $order->getFrontendStatusLabel() ] ]; $transportObject = new DataObject($transport); $this->appEmulation->stopEnvironmentEmulation(); /** * Event argument `transport` is @deprecated. Use `transportObject` instead. */ $this->eventManager->dispatch( 'email_shipment_set_template_vars_before', ['sender' => $this, 'transport' => $transportObject->getData(), 'transportObject' => $transportObject] ); $this->templateContainer->setTemplateVars($transportObject->getData()); if ($this->checkAndSend($order)) { $shipment->setEmailSent(true); $this->shipmentResource->saveAttribute($shipment, ['send_email', 'email_sent']); return true; } } else { $shipment->setEmailSent(null); $this->shipmentResource->saveAttribute($shipment, 'email_sent'); } $this->shipmentResource->saveAttribute($shipment, 'send_email'); return false; } /** * Get payment info block as html * * @param Order $order * @return string * @throws \Exception */ protected function getPaymentHtml(Order $order) { return $this->paymentHelper->getInfoBlockHtml( $order->getPayment(), $this->identityContainer->getStore()->getStoreId() ); } }