Customer Information Attribute in New Order Email Template The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)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 did passengers keep warm on sail ships?

Finding the path in a graph from A to B then back to A with a minimum of shared edges

Does Parliament hold absolute power in the UK?

Mortgage adviser recommends a longer term than necessary combined with overpayments

How many people can fit inside Mordenkainen's Magnificent Mansion?

Road tyres vs "Street" tyres for charity ride on MTB Tandem

How can I protect witches in combat who wear limited clothing?

I could not break this equation. Please help me

Can the DM override racial traits?

Working through the single responsibility principle (SRP) in Python when calls are expensive

how can a perfect fourth interval be considered either consonant or dissonant?

What's the point in a preamp?

Python - Fishing Simulator

First use of “packing” as in carrying a gun

Arduino Pro Micro - switch off LEDs

Does the AirPods case need to be around while listening via an iOS Device?

Was credit for the black hole image misattributed?

Would it be possible to rearrange a dragon's flight muscle to somewhat circumvent the square-cube law?

In horse breeding, what is the female equivalent of putting a horse out "to stud"?

Why not take a picture of a closer black hole?

Why is superheterodyning better than direct conversion?

Did God make two great lights or did He make the great light two?

Sort list of array linked objects by keys and values

Did the UK government pay "millions and millions of dollars" to try to snag Julian Assange?



Customer Information Attribute in New Order Email Template



The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)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
















bumped to the homepage by Community 2 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 2 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 2 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 2 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

                                        Can not update quote_id field of “quote_item” table magento 2Magento 2.1 - We can't remove the item. (Shopping Cart doesnt allow us to remove items before becomes empty)Add value for custom quote item attribute using REST apiREST API endpoint v1/carts/cartId/items always returns error messageCorrect way to save entries to databaseHow to remove all associated quote objects of a customer completelyMagento 2 - Save value from custom input field to quote_itemGet quote_item data using quote id and product id filter in Magento 2How to set additional data to quote_item table from controller in Magento 2?What is the purpose of additional_data column in quote_item table in magento2Set Custom Price to Quote item magento2 from controller

                                        Magento 2 disable Secret Key on URL's from terminal The Next CEO of Stack OverflowMagento 2 Shortcut/GUI tool to perform commandline tasks for windowsIn menu add configuration linkMagento oAuth : Generating access token and access secretMagento 2 security key issue in Third-Party API redirect URIPublic actions in admin controllersHow to Disable Cache in Custom WidgetURL Key not changing in Magento 2Product URL Key gets deleted when importing custom options - Magento 2Problem with reindex terminalMagento 2 - bin/magento Commands not working in Cpanel Terminal

                                        Aasi (pallopeli) Navigointivalikko