Customer Information Attribute in New Order Email Template Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?New Order Email Template for each Product type in MagentoMagento Order email templateShipping information in sales order emailNew Order transactional email template nonexistant?Create a new email template headerNew Order Email - Need to change payment information fontNew order email customMagento transactional email new order email template product image missingAdd “Tax amount” to totals in “New order” email templatemagento 2.2.5: Adding Custom Attribute to Customer Edit Form in Admin

How do I find out the mythology and history of my Fortress?

Trademark violation for app?

old style "caution" boxes

2001: A Space Odyssey's use of the song "Daisy Bell" (Bicycle Built for Two); life imitates art or vice-versa?

Did MS DOS itself ever use blinking text?

Using et al. for a last / senior author rather than for a first author

Why aren't air breathing engines used as small first stages

When the Haste spell ends on a creature, do attackers have advantage against that creature?

How do I stop a creek from eroding my steep embankment?

Why are the trig functions versine, haversine, exsecant, etc, rarely used in modern mathematics?

What does "lightly crushed" mean for cardamon pods?

Do square wave exist?

An adverb for when you're not exaggerating

How to answer "Have you ever been terminated?"

Is it a good idea to use CNN to classify 1D signal?

What do you call the main part of a joke?

Why didn't Eitri join the fight?

How to find all the available tools in mac terminal?

Uniqueness of spanning tree on a grid.

What does the "x" in "x86" represent?

What does this Jacques Hadamard quote mean?

Wu formula for manifolds with boundary

Can you use the Shield Master feat to shove someone before you make an attack by using a Readied action?

Do I really need recursive chmod to restrict access to a folder?



Customer Information Attribute in New Order Email Template



Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?New Order Email Template for each Product type in MagentoMagento Order email templateShipping information in sales order emailNew Order transactional email template nonexistant?Create a new email template headerNew Order Email - Need to change payment information fontNew order email customMagento transactional email new order email template product image missingAdd “Tax amount” to totals in “New order” email templatemagento 2.2.5: Adding Custom Attribute to Customer Edit Form in Admin



.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






























    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


























      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,51751841




      6,51751841










      asked Aug 11 '15 at 13:19









      Paul DonnellyPaul Donnelly

      4302818




      4302818




















          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,44931147




                    8,44931147










                    answered Aug 11 '15 at 13:42









                    Manashvi BirlaManashvi Birla

                    6,51751841




                    6,51751841























                        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,51751841




                            6,51751841










                            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

                                        Sum ergo cogito? 1 nng

                                        419 nièngy_Soadمي 19bal1.5o_g

                                        Queiggey Chernihivv 9NnOo i Zw X QqKk LpB