![]() 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/Container/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Sales\Model\Order\Email\Container; /** * Class \Magento\Sales\Model\Order\Email\Container\OrderIdentity */ class OrderIdentity extends Container implements IdentityInterface { /** * Configuration paths */ const XML_PATH_EMAIL_COPY_METHOD = 'sales_email/order/copy_method'; const XML_PATH_EMAIL_COPY_TO = 'sales_email/order/copy_to'; const XML_PATH_EMAIL_IDENTITY = 'sales_email/order/identity'; const XML_PATH_EMAIL_GUEST_TEMPLATE = 'sales_email/order/guest_template'; const XML_PATH_EMAIL_TEMPLATE = 'sales_email/order/template'; const XML_PATH_EMAIL_ENABLED = 'sales_email/order/enabled'; /** * Is email enabled * * @return bool */ public function isEnabled() { return $this->scopeConfig->isSetFlag( self::XML_PATH_EMAIL_ENABLED, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $this->getStore()->getStoreId() ); } /** * Return email copy_to list * * @return array|bool */ public function getEmailCopyTo() { $data = $this->getConfigValue(self::XML_PATH_EMAIL_COPY_TO, $this->getStore()->getStoreId()); if (!empty($data)) { return array_map('trim', explode(',', $data)); } return false; } /** * Return copy method * * @return mixed */ public function getCopyMethod() { return $this->getConfigValue(self::XML_PATH_EMAIL_COPY_METHOD, $this->getStore()->getStoreId()); } /** * Return guest template id * * @return mixed */ public function getGuestTemplateId() { return $this->getConfigValue(self::XML_PATH_EMAIL_GUEST_TEMPLATE, $this->getStore()->getStoreId()); } /** * Return template id * * @return mixed */ public function getTemplateId() { return $this->getConfigValue(self::XML_PATH_EMAIL_TEMPLATE, $this->getStore()->getStoreId()); } /** * Return email identity * * @return mixed */ public function getEmailIdentity() { return $this->getConfigValue(self::XML_PATH_EMAIL_IDENTITY, $this->getStore()->getStoreId()); } }