1

ファイルに目を通し、頭をかきむしっています。新規アカウント作成メールを送信する機能はどこにありますか? そして、特定の顧客グループを参照するためにどの変数を使用すればよいでしょうか?

EDIT 2/18 以下の提案に従って、Customer.php ファイルを見て、次の関数を確認します。

 public function sendNewAccountEmail($type = 'registered', $backUrl = '', $storeId = '0')
    {
        $types = array(
            'registered'   => self::XML_PATH_REGISTER_EMAIL_TEMPLATE,  // welcome email, when confirmation is disabled
            'confirmed'    => self::XML_PATH_CONFIRMED_EMAIL_TEMPLATE, // welcome email, when confirmation is enabled
            'confirmation' => self::XML_PATH_CONFIRM_EMAIL_TEMPLATE,   // email with confirmation link
        );
        if (!isset($types[$type])) {
            Mage::throwException(Mage::helper('customer')->__('Wrong transactional account email type'));
        }

        if (!$storeId) {
            $storeId = $this->_getWebsiteStoreId($this->getSendemailStoreId());
        }

        $this->_sendEmailTemplate($types[$type], self::XML_PATH_REGISTER_EMAIL_IDENTITY,
            array('customer' => $this, 'back_url' => $backUrl), $storeId);

        return $this;
    }

$types 配列に別のタイプを設定できると思いますが、定数 const XML_PATH_REGISTER_EMAIL_IDENTITY = 'customer/create_account/email_identity' にアクセスして新しいタイプ条件を設定するにはどうすればよいですか? XMLパスを見つける方法はまだわかりません。


2/21 編集

モジュールファイル全体をコピーして名前を変更し、独自のモジュールとして作成しました。構成ファイルで次のように変更しました。

<customer_create_account_email_template_dvm translate="label" module="customer">
                    <label>New account DVM</label>
                    <file>account_new_dvm.html</file>
                    <type>html</type>
                </customer_create_account_email_template_dvm>

私のテンプレートを追加するには、ここにも下から 2 番目です。

<create_account>
                <confirm>0</confirm>
                <default_group>1</default_group>
                <tax_calculation_address_type>billing</tax_calculation_address_type>
                <email_domain>example.com</email_domain>
                <email_identity>general</email_identity>
                <email_template>customer_create_account_email_template</email_template>
                <email_confirmation_template>customer_create_account_email_confirmation_template</email_confirmation_template>
                <email_register_template_dvm>customer_create_account_email_register_template_dvm</email_register_template_dvm>
                <email_confirmed_template>customer_create_account_email_confirmed_template</email_confirmed_template>
                <vat_frontend_visibility>0</vat_frontend_visibility>
            </create_account>

次に、定数を Customer.php に追加しました

const XML_PATH_CONFIRM_EMAIL_TEMPLATE_DVM       = 'customer/create_account/email_confirmation_template_dvm';

および変更された関数:

public function sendNewAccountEmail($type = 'registered', $backUrl = '', $storeId = '0')
    {

        Mage::getSingleton('core/session', array('name'=>'frontend')); 
        $session = Mage::getSingleton('customer/session');

        //Caitlin Havener
        //What Group do you belong to?
        if($session->isLoggedIn()) {
            $customerGroupID = $session->getCustomerGroupId();
            print("Customer Group ID is ". $customerID);
        } else {
            echo 'Not logged In';
        }

        //If you are DVM set your type
        if ($customerGroupID==5)
        {
            $type = 'dvm';
        }

        $types = array(
            'registered'   => self::XML_PATH_REGISTER_EMAIL_TEMPLATE,  // welcome email, when confirmation is disabled
            'confirmed'    => self::XML_PATH_CONFIRMED_EMAIL_TEMPLATE, // welcome email, when confirmation is enabled
            'confirmation' => self::XML_PATH_CONFIRM_EMAIL_TEMPLATE,   // email with confirmation link
            'dvm' => self::XML_PATH_REGISTER_EMAIL_TEMPLATE_DVM,   // dvm new account email
        );
        if (!isset($types[$type])) {
            Mage::throwException(Mage::helper('customer')->__('Wrong transactional account email type'));
        }

        if (!$storeId) {
            $storeId = $this->_getWebsiteStoreId($this->getSendemailStoreId());
        }

        $this->_sendEmailTemplate($types[$type], self::XML_PATH_REGISTER_EMAIL_IDENTITY,
            array('customer' => $this, 'back_url' => $backUrl), $storeId);

        return $this;
    }

私はそれをテストしましたが、うまくいきません。ご覧のとおり、トレースするエコーがいくつかありますが、これを直接デバッグする方法がわかりません。Firebug がありますが、使い方がわかりません。どんな提案でも大歓迎です。$session->isLoggedIn() は false と評価されますか?

UPDATE 2/27/13_ _ _ _ _ _ _ _ _ _ __ _ _ _ __ _ _ __ _ _ __ _ __ @Meabedブログ投稿であなたがしていることを再現しようとします. CaitlinHavener というフォルダーを作成し、その中に DVMCustomer ディレクトリを置き、その中に etc フォルダーを置きました。その中にconfig.xmlがあります:

<template>
            <email>
                <CaitlinHavener_DVMCustomer translate="label" module="mymodule">
                    <label>DVMCustomer Template</label>
                    <file>custom/mytemplate.html</file>
                    <type>html</type>
                </CaitlinHavener_DVMCustomer>
            </email>
</template>

そしてsystem.xmlの中に私は持っています:

<?xml version="1.0"?>
<?xml version="1.0" encoding="UTF-8"?>
<config>
    <sections>
        <customer translate="label" module="mymodule">
            <groups>
                <custom_email translate="label">
                    <label>DVM Custom Template</label>
                    <frontend_type>text</frontend_type>
                    <sort_order>5</sort_order>
                    <show_in_default>1</show_in_default>
                    <show_in_website>0</show_in_website>
                    <show_in_store>0</show_in_store>
                    <fields>
                            <exist_user_template translate="label">
                                <label>DVM Custom Template</label>
                                <frontend_type>select</frontend_type>
                                <source_model>adminhtml/system_config_source_email_template</source_model>
                                <sort_order>3</sort_order>
                                <show_in_default>1</show_in_default>
                                <show_in_website>1</show_in_website>
                                <show_in_store>1</show_in_store>
                            </exist_user_template>
                    </fields>
                </custom_email>
            </groups>
        </customer>
    </sections>
</config>

CaitlinHavener_DVMCustomer.xml という名前のモジュール xml を作成し、modules フォルダーに配置しました。

<?xml version="1.0" encoding="UTF-8"?>
<config>    
    <modules>
        <CaitlinHavener_DVMCustomer>
            <active>true</active>
            <codePool>local</codePool>
        </CaitlinHavener_DVMCustomer>
    </modules>
</config>

system>config>advanced に移動すると、システムがモジュールを登録していることがわかりますが、system>transactional email に移動したとき、または新しいテンプレートを作成して「テンプレートの読み込み」を選択したときに、モジュールが表示されません。

私が間違っていることがわかりますか?

4

2 に答える 2

0

別のモジュールを作成し、顧客モデルを拡張する必要があります

class Mage_Customer_Model_Customer extends Mage_Core_Model_Abstract

モデルにはメールの送信に関連するすべてのメソッドがあるため、顧客グループを確認し、送信するテンプレートを設定する必要があります。

于 2013-02-06T13:45:05.903 に答える
0

新しいアカウント メールを送信するための設定は、[システム] -> [設定] -> [左側のサイドバーにある [顧客] グループで [顧客の設定] を探します。そこに新しいアカウントの作成オプションがあります。

顧客グループについて私が見ていることについては、コア Magento では、同じ構成グループ内のストアビューごとにそのオプションのみを構成できます。

于 2013-02-05T22:26:38.300 に答える