Customer Information Attribute in New Order Email Template
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
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
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.
add a comment |
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
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.
add a comment |
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
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
magento-1 email-templates customer-attribute
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.
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
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.
add a comment |
for transectional email, you need set value via controller or observer and than you use {{var customer.getAccountno()}} it will work.
add a comment |
Solution for Magento 1.9.x
{{var order.getCustomer().getData('your_customer_attribute_code')}}
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
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
add a comment |
add a comment |
for transectional email, you need set value via controller or observer and than you use {{var customer.getAccountno()}} it will work.
add a comment |
for transectional email, you need set value via controller or observer and than you use {{var customer.getAccountno()}} it will work.
add a comment |
for transectional email, you need set value via controller or observer and than you use {{var customer.getAccountno()}} it will work.
for transectional email, you need set value via controller or observer and than you use {{var customer.getAccountno()}} it will work.
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
add a comment |
add a comment |
Solution for Magento 1.9.x
{{var order.getCustomer().getData('your_customer_attribute_code')}}
add a comment |
Solution for Magento 1.9.x
{{var order.getCustomer().getData('your_customer_attribute_code')}}
add a comment |
Solution for Magento 1.9.x
{{var order.getCustomer().getData('your_customer_attribute_code')}}
Solution for Magento 1.9.x
{{var order.getCustomer().getData('your_customer_attribute_code')}}
answered Apr 18 '18 at 7:42
TobiasDalhofTobiasDalhof
1
1
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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