맞춤 이메일 헤더를 만드는 방법


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
David Manners

네 저도 그렇습니다. 나는 올바른 길을 믿습니다. app / local / en_US / template / email / html / header2.html.
저스틴 록

답변:


2

클래스 기본 Magento를 구현하여 여러 (머리글 및 바닥 글) 작업을 수행 할 수도 있습니다.

파일 작성 :

app / local / Mage / Adminhtml / Model / System / Config / Source / Email / 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

이 그것을 설명하는 데 도움이 될 수 있습니다
이메일을 사용하여 여러 바닥 글

들이 물어 무엇 :

이메일에 여러 바닥 글 사용

up vote 1 down vote 좋아하는 거래 전자 메일에 여러 바닥 글을 사용할 수 있습니까?

새 주문 이메일에 특정 바닥 글을 사용하고 배송 이메일에 다른 바닥 글을 사용하고 싶습니다.

현재이 줄로 바닥 글을로드합니다. {{template config_path = "design / email / footer"}}

거래 이메일에 특정 템플릿을로드하려면 어떻게해야합니까?


1

design / email / header 템플릿이 아닌 구성 옵션을 나타냅니다 .

옵션을 추가하기 위해 새 모듈을 만들 수 있습니다.

<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> 권한 - -> 블록 시스템에서
콜린 앤더슨에게

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>

코어 파일에서이 작업을 수행하는 대신 사용자 지정 모듈에서이 작업을 수행하십시오.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.