カスタムメールヘッダーを作成する方法


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
デヴィッド・マナー

はい、そうです。正しい道はあると思います。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

これは、それを説明するのに役立つことがあります。
電子メールの利用、複数のフッター

彼らは尋ねる何を:

メールに複数のフッターを使用する

トランザクションメールに複数のフッターを使用することはできますか?

そのため、新しい注文メールには特定のフッターを使用し、出荷メールには別のフッターを使用します。

現在、次の行でフッターをロードしています:{{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>ブロック-権限> -システムの下で
コリン・アンダーソン

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.