Customer Information Attribute in New Order Email Template





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







2















I've scanned many posts but cannot get to bottom of this one.
I have created a custom Customer Information attribute and I need it to display on the New Order transactional email.



Any ideas? I have tried {{var customer.getAccountno()}} and a few others but it won't display.



My Code:



$installer = $this;
$installer->startSetup();


$installer->addAttribute("customer", "accountno", array(
"type" => "varchar",
"backend" => "",
"label" => "Account Number",
"input" => "text",
"source" => "",
"visible" => true,
"required" => false,
"default" => "",
"frontend" => "",
"unique" => false,
"note" => ""

));

$attribute = Mage::getSingleton("eav/config")->getAttribute("customer", "accountno");


$used_in_forms=array();

$used_in_forms="adminhtml_customer";
$attribute->setData("used_in_forms", $used_in_forms)
->setData("is_used_for_customer_segment", true)
->setData("is_system", 0)
->setData("is_user_defined", 1)
->setData("is_visible", 1)
->setData("sort_order", 100)
;
$attribute->save();



$installer->endSetup();









share|improve this question
















bumped to the homepage by Community 3 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.






















    2















    I've scanned many posts but cannot get to bottom of this one.
    I have created a custom Customer Information attribute and I need it to display on the New Order transactional email.



    Any ideas? I have tried {{var customer.getAccountno()}} and a few others but it won't display.



    My Code:



    $installer = $this;
    $installer->startSetup();


    $installer->addAttribute("customer", "accountno", array(
    "type" => "varchar",
    "backend" => "",
    "label" => "Account Number",
    "input" => "text",
    "source" => "",
    "visible" => true,
    "required" => false,
    "default" => "",
    "frontend" => "",
    "unique" => false,
    "note" => ""

    ));

    $attribute = Mage::getSingleton("eav/config")->getAttribute("customer", "accountno");


    $used_in_forms=array();

    $used_in_forms="adminhtml_customer";
    $attribute->setData("used_in_forms", $used_in_forms)
    ->setData("is_used_for_customer_segment", true)
    ->setData("is_system", 0)
    ->setData("is_user_defined", 1)
    ->setData("is_visible", 1)
    ->setData("sort_order", 100)
    ;
    $attribute->save();



    $installer->endSetup();









    share|improve this question
















    bumped to the homepage by Community 3 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.


















      2












      2








      2








      I've scanned many posts but cannot get to bottom of this one.
      I have created a custom Customer Information attribute and I need it to display on the New Order transactional email.



      Any ideas? I have tried {{var customer.getAccountno()}} and a few others but it won't display.



      My Code:



      $installer = $this;
      $installer->startSetup();


      $installer->addAttribute("customer", "accountno", array(
      "type" => "varchar",
      "backend" => "",
      "label" => "Account Number",
      "input" => "text",
      "source" => "",
      "visible" => true,
      "required" => false,
      "default" => "",
      "frontend" => "",
      "unique" => false,
      "note" => ""

      ));

      $attribute = Mage::getSingleton("eav/config")->getAttribute("customer", "accountno");


      $used_in_forms=array();

      $used_in_forms="adminhtml_customer";
      $attribute->setData("used_in_forms", $used_in_forms)
      ->setData("is_used_for_customer_segment", true)
      ->setData("is_system", 0)
      ->setData("is_user_defined", 1)
      ->setData("is_visible", 1)
      ->setData("sort_order", 100)
      ;
      $attribute->save();



      $installer->endSetup();









      share|improve this question
















      I've scanned many posts but cannot get to bottom of this one.
      I have created a custom Customer Information attribute and I need it to display on the New Order transactional email.



      Any ideas? I have tried {{var customer.getAccountno()}} and a few others but it won't display.



      My Code:



      $installer = $this;
      $installer->startSetup();


      $installer->addAttribute("customer", "accountno", array(
      "type" => "varchar",
      "backend" => "",
      "label" => "Account Number",
      "input" => "text",
      "source" => "",
      "visible" => true,
      "required" => false,
      "default" => "",
      "frontend" => "",
      "unique" => false,
      "note" => ""

      ));

      $attribute = Mage::getSingleton("eav/config")->getAttribute("customer", "accountno");


      $used_in_forms=array();

      $used_in_forms="adminhtml_customer";
      $attribute->setData("used_in_forms", $used_in_forms)
      ->setData("is_used_for_customer_segment", true)
      ->setData("is_system", 0)
      ->setData("is_user_defined", 1)
      ->setData("is_visible", 1)
      ->setData("sort_order", 100)
      ;
      $attribute->save();



      $installer->endSetup();






      magento-1 email-templates customer-attribute






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jul 12 '17 at 3:49









      Manashvi Birla

      6,49751841




      6,49751841










      asked Aug 11 '15 at 13:19









      Paul DonnellyPaul Donnelly

      4302818




      4302818





      bumped to the homepage by Community 3 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 3 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          3 Answers
          3






          active

          oldest

          votes


















          0














          to add the customer attribute in new order email, change the below file



          Rewrite first sendNewOrderEmail() from app/code/core/Mage/Sales/Model/Order.php to your local codepool.
          Add $email in the template parameters.



          $info = $this->getAccountno();
          $mailer->setTemplateParams(array(
          'order' => $this,
          'info' => $info,
          'billing' => $this->getBillingAddress(),
          'payment_html' => $paymentBlockHtml
          )
          );


          Now you can access this variable like {{var info}} in the new sales order email template.






          share|improve this answer

































            0














            for transectional email, you need set value via controller or observer and than you use {{var customer.getAccountno()}} it will work.






            share|improve this answer

































              0














              Solution for Magento 1.9.x



              {{var order.getCustomer().getData('your_customer_attribute_code')}}






              share|improve this answer
























                Your Answer








                StackExchange.ready(function() {
                var channelOptions = {
                tags: "".split(" "),
                id: "479"
                };
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function() {
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled) {
                StackExchange.using("snippets", function() {
                createEditor();
                });
                }
                else {
                createEditor();
                }
                });

                function createEditor() {
                StackExchange.prepareEditor({
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: false,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: null,
                bindNavPrevention: true,
                postfix: "",
                imageUploader: {
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                },
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f78357%2fcustomer-information-attribute-in-new-order-email-template%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                0














                to add the customer attribute in new order email, change the below file



                Rewrite first sendNewOrderEmail() from app/code/core/Mage/Sales/Model/Order.php to your local codepool.
                Add $email in the template parameters.



                $info = $this->getAccountno();
                $mailer->setTemplateParams(array(
                'order' => $this,
                'info' => $info,
                'billing' => $this->getBillingAddress(),
                'payment_html' => $paymentBlockHtml
                )
                );


                Now you can access this variable like {{var info}} in the new sales order email template.






                share|improve this answer






























                  0














                  to add the customer attribute in new order email, change the below file



                  Rewrite first sendNewOrderEmail() from app/code/core/Mage/Sales/Model/Order.php to your local codepool.
                  Add $email in the template parameters.



                  $info = $this->getAccountno();
                  $mailer->setTemplateParams(array(
                  'order' => $this,
                  'info' => $info,
                  'billing' => $this->getBillingAddress(),
                  'payment_html' => $paymentBlockHtml
                  )
                  );


                  Now you can access this variable like {{var info}} in the new sales order email template.






                  share|improve this answer




























                    0












                    0








                    0







                    to add the customer attribute in new order email, change the below file



                    Rewrite first sendNewOrderEmail() from app/code/core/Mage/Sales/Model/Order.php to your local codepool.
                    Add $email in the template parameters.



                    $info = $this->getAccountno();
                    $mailer->setTemplateParams(array(
                    'order' => $this,
                    'info' => $info,
                    'billing' => $this->getBillingAddress(),
                    'payment_html' => $paymentBlockHtml
                    )
                    );


                    Now you can access this variable like {{var info}} in the new sales order email template.






                    share|improve this answer















                    to add the customer attribute in new order email, change the below file



                    Rewrite first sendNewOrderEmail() from app/code/core/Mage/Sales/Model/Order.php to your local codepool.
                    Add $email in the template parameters.



                    $info = $this->getAccountno();
                    $mailer->setTemplateParams(array(
                    'order' => $this,
                    'info' => $info,
                    'billing' => $this->getBillingAddress(),
                    'payment_html' => $paymentBlockHtml
                    )
                    );


                    Now you can access this variable like {{var info}} in the new sales order email template.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Jul 11 '17 at 16:21









                    PЯINCƏ

                    8,43931147




                    8,43931147










                    answered Aug 11 '15 at 13:42









                    Manashvi BirlaManashvi Birla

                    6,49751841




                    6,49751841

























                        0














                        for transectional email, you need set value via controller or observer and than you use {{var customer.getAccountno()}} it will work.






                        share|improve this answer






























                          0














                          for transectional email, you need set value via controller or observer and than you use {{var customer.getAccountno()}} it will work.






                          share|improve this answer




























                            0












                            0








                            0







                            for transectional email, you need set value via controller or observer and than you use {{var customer.getAccountno()}} it will work.






                            share|improve this answer















                            for transectional email, you need set value via controller or observer and than you use {{var customer.getAccountno()}} it will work.







                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Jul 12 '17 at 3:50









                            Manashvi Birla

                            6,49751841




                            6,49751841










                            answered Mar 24 '17 at 1:04









                            Ubed ArabUbed Arab

                            164




                            164























                                0














                                Solution for Magento 1.9.x



                                {{var order.getCustomer().getData('your_customer_attribute_code')}}






                                share|improve this answer




























                                  0














                                  Solution for Magento 1.9.x



                                  {{var order.getCustomer().getData('your_customer_attribute_code')}}






                                  share|improve this answer


























                                    0












                                    0








                                    0







                                    Solution for Magento 1.9.x



                                    {{var order.getCustomer().getData('your_customer_attribute_code')}}






                                    share|improve this answer













                                    Solution for Magento 1.9.x



                                    {{var order.getCustomer().getData('your_customer_attribute_code')}}







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Apr 18 '18 at 7:42









                                    TobiasDalhofTobiasDalhof

                                    1




                                    1






























                                        draft saved

                                        draft discarded




















































                                        Thanks for contributing an answer to Magento Stack Exchange!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function () {
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f78357%2fcustomer-information-attribute-in-new-order-email-template%23new-answer', 'question_page');
                                        }
                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        Alcázar de San Juan

                                        Griza ansero

                                        Heinkel He 51