1

何らかの理由で、顧客が連絡フォームを送信すると、Gmailに、電子メールが顧客からではなく自分から送信されたように見えます。私が何を話しているのかわかるように、写真をチェックしてください。

http://i.stack.imgur.com/QsACc.jpg この画像は、自分からのメールを示しています

http://i.stack.imgur.com/nghG2.jpg 矢印を見てください。これは、連絡先からのすべての電子メールに表示されるものです。同じ名前、同じタイトル。

多くの人がこれを使用するとき、どれがどれであるかを私が知る方法がないので、これは本当に迷惑です。

これは私の連絡先ページです:meome.vn/lien-he私が知らない電子メールテンプレートに入れるコードがあるかもしれません。とにかく、誰かがこれを修正する方法を知っているなら、私を助けてください。ほんとうにありがとう。

4

2 に答える 2

1

技術的には、これはmagento 連絡フォームの電子メールの「差出人」フィールドを送信者に変更するのと同じですが、完全かつ完全な回答をここに記載します。そこで提供される答えの 1 つが、単純なコア ハックです。

私はコア ファイルをハックしないと決めているので、カスタム コントローラーを作成することでこの問題を解決しました。私が読んだところ、それは十分に簡単に思えました...また、私が達成しようと設定した目標を提供する拡張機能は市場にありません。1)Fromに顧客の電子メールと名前があります。2) スパム対策のための単純な人間による入力。3) いくつかのカスタム フィールド。そのうちの 3 つは実際には製品属性です。

これを行うためのファイルは次のとおりです。

$ find -type f
./Cycleworks/Cycleworks_ContactExtended.xml
./Cycleworks/ContactExtended/controllers/IndexController.php
./Cycleworks/ContactExtended/Helper/Data.php
./Cycleworks/ContactExtended/etc/config.xml

次に、ファイル自体について説明します... 最初の XML ファイルは、カスタム オーバーライドについて Magento に伝えます。

// copy this to app/etc/modules/
./Cycleworks/Cycleworks_ContactExtended.xml
<?xml version="1.0"?>
<config>
    <modules>
        <Cycleworks_ContactExtended>
            <active>true</active>
            <codePool>local</codePool>
        </Cycleworks_ContactExtended>
    </modules>
</config>  

残りのファイルはapp/code/local/. 以下では、元のコントローラーから関数をコピーしpostAction()、コードを一番上に追加してから、1 つの変更を加えました。->sendTransactional()

./Cycleworks/ContactExtended/controllers/IndexController.php
<?php
require_once 'Mage/Contacts/controllers/IndexController.php';
class Cycleworks_ContactExtended_IndexController extends Mage_Contacts_IndexController
{
    public function postAction()
    {
    $post = $this->getRequest()->getPost();
    if ( $post ) {
        if( stripos( $post["people"],"tires") ===FALSE ){
            Mage::getSingleton('customer/session')->addError("Please correctly answer the question to confirm you are human.<br>\"".$this->getRequest()->getPost("people")."\" is not correct.");
                $this->_redirect('*/*/');
                return;         
        }
        $extras=Array( "bike_year","bike_make","bike_model","bike_model_ext" );
        foreach($extras as $field) {
            if( $post[$field] == "empty" )
                $post[$field]= "----";
        }
        $comment = $post['comment']."\nMage::getStoreConfig(self::XML_PATH_EMAIL_SENDER)=\n'".Mage::getStoreConfig(self::XML_PATH_EMAIL_SENDER)."'";
        $post['comment']= nl2br($comment);

        $translate = Mage::getSingleton('core/translate');
        /* @var $translate Mage_Core_Model_Translate */
        $translate->setTranslateInline(false);
        try {
            ...
            ...
            ...
            $mailTemplate->setDesignConfig(array('area' => 'frontend'))
                ->setReplyTo($post['email'])
                ->sendTransactional(
                    Mage::getStoreConfig(self::XML_PATH_EMAIL_TEMPLATE),
                    array( 'name'=>$post['name'],'email'=> $post['email'] ),        // Mage::getStoreConfig(self::XML_PATH_EMAIL_SENDER), //
                    Mage::getStoreConfig(self::XML_PATH_EMAIL_RECIPIENT),
                    null,
                    array('data' => $postObject)
                );
            ...
            ...
            ...
    }
}

素敵で空のシェル。はい、これらにはすべて開始<?phpタグがありますが、終了タグはありませんか??

./Cycleworks/ContactExtended/Helper/Data.php
<?php
class Cycleworks_ContactExtended_Helper_Data extends Mage_Core_Helper_Abstract
{

}

そして、カスタム モジュールの XML:

./Cycleworks/ContactExtended/etc/config.xml
<?xml version="1.0"?>
<config>
    <modules>
        <Cycleworks_ContactExtended>
            <version>0.0.01</version>
        </Cycleworks_ContactExtended>
    </modules>
    <frontend>
        <routers>
            <contacts>
                <args>
                    <modules>
                        <Cycleworks_ContactExtended before="Mage_Contacts">Cycleworks_ContactExtended</Cycleworks_ContactExtended>
                    </modules>
                </args>
            </contacts>
        </routers>
    </frontend>
    <global>
        <helpers>
            <contactextended>
                <class>Cycleworks_ContactExtended_Helper</class>
            </contactextended>
        </helpers>        
    </global>
</config>

バックエンドはこれだけです。フォーム自体については、このコードを form.phtml のコメント ブロックの下と終了</ul>タグの上に追加しました。ほとんどの人にとって、このファイルはapp/code/design/frontend/default/default/template/contacts. 私は購入した TM テンプレートを持っているので、私のものはdefault/a034/template/contacts

<?php
$confirm_people_question="Motorcycles have two of these and rhymes with plires";    // CKCK form anti-spam
?>
<li>
    <label for="people" class="required"><em>*</em><?php echo $confirm_people_question ?></label>
    <div class="input-box">
        <input name="people" id="people" title="Please confirm you are people" value="" class="required-entry input-text" type="text" />
    </div>
</li>
<?php
// from http://www.sharpdotinc.com/mdost/2009/04/06/magento-getting-product-attributes-values-and-labels/
$wanted=Array("make","model","engine_size");    // note that each attribute needs to be searchable
$attributes = Mage::getModel('catalogsearch/advanced')->getAttributes();    // $productAttrs = Mage::getResourceModel('catalog/product_attribute_collection');
$attributeArray=array();
foreach($attributes as $a){
    if(  in_array( $a->getAttributeCode(), $wanted) ){
        foreach($a->getSource()->getAllOptions(false) as $option){
            $attributeArray[$a->getAttributeCode()][$option['value']] = $option['label'];
        }
    }
}

?>
<li>
    <div class="ymm">
    <label for="bike_year">Year</label><br>
        <select id="year" name="bike_year">
            <option value="empty"></option>
            <?  for( $idx=date("Y"); $idx >= 1985; $idx-- ) 
                    echo "                      <option value=\"$idx\">$idx</option>\n";
            ?>
        </select>
    </div>
    <div class="ymm">
    <label for="bike_make">Make</label><br>
        <select id="make" name="bike_make">
            <option value="empty"></option>
            <?  foreach( $attributeArray['make'] as $id => $brand ) 
                    echo "                      <option value=\"$brand\">$brand</option>\n";
            ?>
        </select>
    </div>
    <div class="ymm">
    <label for="bike_model">Model</label><br>
        <select id="model" name="bike_model">
            <option value="empty"></option>
            <?  foreach( $attributeArray['model'] as $id => $model )    
                    echo "                      <option value=\"$model\">$model</option>\n";
            ?>
        </select>
    </div>
    <div class="ymm">
        <label for="bike_model_ext">More</label>
        <div class="input-box">
            <input type="text" size="15" value="" id="model_ext" name="bike_model_ext" class="input-text">
        </div>
    </div>
</li>

ほとんど忘れていましたが、パズルの最後の鍵は、管理領域のメール テンプレートです: System - Transactional Emails. HTML 連絡先テンプレートを見つけます (または、新しいものを作成し、プレーン テキストに変換しないでください)。これが私が得たものです。

<body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
<div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
<table>
<tr><td>Name</td><td>{{var data.name}}</td></tr>
<tr><td>E-mail</td><td>{{var data.email}}</td></tr>
<tr><td>Telephone</td><td>{{var data.telephone}}</td></tr>
</table>
<P>
<fieldset><legend>Subject: &nbsp; {{var data.subject}}</legend>
{{var data.comment}}
</fieldset>
Bike info: {{var data.bike_year}} {{var data.bike_make}} {{var data.bike_model}} {{var data.bike_model_ext}}
</div>
</body>

自分でカスタムモジュールを作るとは思っていませんでしたが、ここや他の場所で見つけたレシピに従って、これをまとめました. キャプチャが失敗した場合にも正しく動作します。お客様自身の連絡先を CC に含めるオプションをお客様に提供する方法を調査しようとしましたが、何も見つかりませんでした。

その後、カスタム モジュールを作成して、新しい注文の代わりの管理者通知メール テンプレートを作成しようとしましたが、上記で学んだ知識では十分ではありませんでした。:P したがって、Magento に関する私の知識と快適さは、おそらく「危険なハック」を超えていますが、まだ先は長いです。

于 2013-02-15T20:19:17.290 に答える
1

バックエンドでメール設定を確認しましたか。管理者 -> システム -> 構成 -> 電子メール アドレスの保存と管理者 -> システム -> 構成 -> 連絡先 -> 電子メール オプション

于 2012-10-10T05:26:11.257 に答える