วิธีสร้างส่วนหัวของอีเมลที่กำหนดเอง


18

ฉันเห็นในอีเมลรายการธุรกรรมเทมเพลตคำสั่งซื้อใหม่มีแท็กนี้ที่เรียกไฟล์ html ส่วนหัวที่อยู่ใน app/locale/en_US/template/email/html

{{template config_path="design/email/header"}}

ฉันต้องการสร้างส่วนหัวใหม่ดังนั้นฉันจึงสร้างไฟล์ใหม่app/local/en_US/template/email/html/header2.htmlและใช้รหัส

{{template config_path="design/email/header2"}}

แต่มันไม่ทำงาน ด้วยรหัสนี้ไม่มีส่วนหัวรวมอยู่ในอีเมล ความคิดใด ๆ ที่เป็นเหตุผลหรือวิธีการที่เหมาะสมในการสร้างส่วนหัวของอีเมลที่กำหนดเองคืออะไร?


1
คุณมีส่วนหัวที่กำหนดไว้ภายใต้เส้นทางการตั้งค่าdesign/email/header2
เดวิดมารยาท

ใช่ฉันทำ. ฉันเชื่อว่าเส้นทางที่ถูกต้องคือ แอป / ท้องถิ่น / th / แม่แบบ / อีเมล์ / html / header2.html
Justin Lok

คำตอบ:


2

นอกจากนี้คุณยังสามารถใช้ Magento เริ่มต้นของชั้นเรียนเพื่อทำงานกับหลายคน (ส่วนหัวและส่วนท้าย)

สร้างไฟล์:

แอป / ท้องถิ่น / Mage / Adminhtml / รุ่น / ระบบ / config / ที่มา / อีเมล์ / Template.php

<?php
/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magento.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magento.com for more information.
 *
 * @category    Mage
 * @package     Mage_Adminhtml
 * @copyright  Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
 * @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */


/**
 * Adminhtml config system template source
 *
 * @category   Mage
 * @package    Mage_Adminhtml
 * @author      Magento Core Team <core@magentocommerce.com>
 */
class Mage_Adminhtml_Model_System_Config_Source_Email_Template extends Varien_Object
{
    /**
     * Config xpath to email template node
     *
     */
    const XML_PATH_TEMPLATE_EMAIL = 'global/template/email/';

    /**
     * Generate list of email templates
     *
     * @return array
     */
    public function toOptionArray()
    {
        if(!$collection = Mage::registry('config_system_email_template')) {
            $collection = Mage::getResourceModel('core/email_template_collection')
            ->load();

            Mage::register('config_system_email_template', $collection);
        }
        $options = $collection->toOptionArray();
        $templateName = Mage::helper('adminhtml')->__('Default Template from Locale');
        $nodeName = str_replace('/', '_', $this->getPath());

        // Implementation for various templates config.
        $templatesNodes = Mage::app()->getConfig()->getNode('global/template/email');
        if(count($templatesNodes)) {
            foreach($templatesNodes as $nodes) {
                foreach($nodes as $code => $config) {
                    if(strpos($code, $nodeName) !== false) {
                        $templateLabelNode = Mage::app()->getConfig()->getNode(self::XML_PATH_TEMPLATE_EMAIL . $code . '/label');
                        if ($templateLabelNode) {
                            $templateName = Mage::helper('adminhtml')->__((string)$templateLabelNode);
                            $templateName = Mage::helper('adminhtml')->__('%s (Default Template from Locale)', $templateName);
                        }
                        array_unshift(
                            $options,
                            array(
                                'value'=> str_replace('/', '_', $code),
                                'label' => $templateName
                                )
                            );
                    }
                }
            }
        }

        return $options;
    }

}

จากนั้นในโมดูลที่กำหนดเองของคุณคุณสามารถใช้ดังในตัวอย่างต่อไปนี้ใน config.xml ของคุณ:

<global>
    <template>
            <email>
                <design_email_header_custom_black translate="label" module="custom_module">
                    <label>Email - Header (CUSTOM BLACK)</label>
                    <file>html/header-custom-black.html</file>
                    <type>text</type>
                </design_email_header_custom_black>
                <design_email_header_custom_white translate="label" module="custom_module">
                    <label>Email - Header (CUSTOM WHITE)</label>
                    <file>html/header-custom-white.html</file>
                    <type>text</type>
                </design_email_header_custom_white>
                <design_email_footer_custom_black translate="label" module="custom_module">
                    <label>Email - Footer (CUSTOM BLACK)</label>
                    <file>html/footer-custom-black.html</file>
                    <type>text</type>
                </design_email_footer_custom_black>
                <design_email_footer_custom_white translate="label" module="custom_module">
                    <label>Email - Footer (CUSTOM WHITE)</label>
                    <file>html/footer-custom-white.html</file>
                    <type>text</type>
                </design_email_footer_custom_white>
            </email>
        </template>
</global>

ดังนั้นคุณมีตัวเลือกเหล่านี้เพื่อเลือกจาก:

ระบบ> การกำหนดค่า> การออกแบบ> อีเมลธุรกรรม


1

สิ่งนี้อาจช่วยอธิบายได้:
ใช้ส่วนท้ายหลายอันสำหรับอีเมล

สิ่งที่พวกเขาถาม:

ใช้ส่วนท้ายหลายอีเมล

โหวตขึ้น 1 โหวตชื่นชอบเป็นไปได้หรือไม่ที่จะใช้ส่วนท้ายหลายรายการสำหรับอีเมลธุรกรรม

ดังนั้นฉันต้องการใช้ส่วนท้ายที่เฉพาะเจาะจงสำหรับอีเมลคำสั่งซื้อใหม่และส่วนท้ายอื่น ๆ สำหรับอีเมลการจัดส่ง

ขณะนี้ฉันโหลดส่วนท้ายด้วยบรรทัดนี้: {{template config_path = "design / email / footer"}}

ฉันจะโหลดเทมเพลตเฉพาะในอีเมลธุรกรรมได้อย่างไร


1

การออกแบบ / อีเมล / ส่วนหัวนี้หมายถึงตัวเลือกการกำหนดค่าไม่ใช่แม่แบบ

คุณสามารถสร้างโมดูลใหม่เพื่อเพิ่มตัวเลือกเช่นนั้น

<config>
    <sections>
        <design>
            <groups>
                <email>
                    <fields>
                        <header2 translate="label">
                            <label>Email Header Template 2</label>
                            <frontend_type>select</frontend_type>
                            <source_model>adminhtml/system_config_source_email_template</source_model>
                            <sort_order>30</sort_order>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>1</show_in_store>
                        </header2>

หรือเพียงแค่สร้างบล็อกแบบคงที่ CMS ใหม่จากนั้นแทรกไว้ด้านบนของเนื้อหาอีเมลของคุณ

{{block type="cms/block" block_id="email-header-sales" }}

การแทนที่

{{template config_path="design/email/header"}}

ฉันต้องอนุญาตcms/blockภายใต้ระบบ -> สิทธิ์ -> บล็อก
Collin Anderson

1

นอกจากนี้คุณต้องแก้ไขรหัสใน app/code/core/Mage/Core/etc/config.xml

<global>
    <template>
            <email>
                <design_email_header translate="label" module="core">
                    <label>Email - Header</label>
                    <file>html/header2.html(your file name)</file>
                    <type>text</type>
                </design_email_header>

แทนที่จะทำสิ่งนี้ในไฟล์ core พยายามทำสิ่งนี้ในโมดูลที่กำหนดเองของคุณ

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.