我可以在Prestashop 1.6中找到电子邮件模板的所有变量

问题描述:

在哪些类中,我可以找到PrestaShop中电子邮件模板的所有变量?
我的意思是像{firstname}或{lastname}。或者,也许它依赖于类方法。例如。如果我创建新的付款模板,那么我需要去PaymentModule.php?感谢帮助。我可以在Prestashop 1.6中找到电子邮件模板的所有变量

亲切的问候

+0

不,我不知道。我想知道,我可以使用哪些变量来创建电子邮件模板。例如{firstname}。 – aviaPL

+0

您可以创建变量并传递给'Mail :: Send'函数。这是你需要的吗? :) – idnovate

+0

我错了?我说英语不好?也许我会用另一个词。我想修改一些模板电子邮件。问题是。在哪里可以找到模板的变量?这是所有.. – aviaPL

正如我在评论说,这取决于通过发送电子邮件的方法。如果您想创建新的付款模板,则必须查看PaymentModule.php并检查ValidateOrder方法。
这是您可以在电子邮件模板中使用的所有瓦尔:

$data = array(
'{firstname}' => $this->context->customer->firstname, 
'{lastname}' => $this->context->customer->lastname, 
'{email}' => $this->context->customer->email, 
'{delivery_block_txt}' => $this->_getFormatedAddress($delivery, "\n"), 
'{invoice_block_txt}' => $this->_getFormatedAddress($invoice, "\n"), 
'{delivery_block_html}' => $this->_getFormatedAddress($delivery, '<br />', array(
    'firstname' => '<span style="font-weight:bold;">%s</span>', 
    'lastname' => '<span style="font-weight:bold;">%s</span>' 
)), 
'{invoice_block_html}' => $this->_getFormatedAddress($invoice, '<br />', array(
     'firstname' => '<span style="font-weight:bold;">%s</span>', 
     'lastname' => '<span style="font-weight:bold;">%s</span>' 
)), 
'{delivery_company}' => $delivery->company, 
'{delivery_firstname}' => $delivery->firstname, 
'{delivery_lastname}' => $delivery->lastname, 
'{delivery_address1}' => $delivery->address1, 
'{delivery_address2}' => $delivery->address2, 
'{delivery_city}' => $delivery->city, 
'{delivery_postal_code}' => $delivery->postcode, 
'{delivery_country}' => $delivery->country, 
'{delivery_state}' => $delivery->id_state ? $delivery_state->name : '', 
'{delivery_phone}' => ($delivery->phone) ? $delivery->phone : $delivery->phone_mobile, 
'{delivery_other}' => $delivery->other, 
'{invoice_company}' => $invoice->company, 
'{invoice_vat_number}' => $invoice->vat_number, 
'{invoice_firstname}' => $invoice->firstname, 
'{invoice_lastname}' => $invoice->lastname, 
'{invoice_address2}' => $invoice->address2, 
'{invoice_address1}' => $invoice->address1, 
'{invoice_city}' => $invoice->city, 
'{invoice_postal_code}' => $invoice->postcode, 
'{invoice_country}' => $invoice->country, 
'{invoice_state}' => $invoice->id_state ? $invoice_state->name : '', 
'{invoice_phone}' => ($invoice->phone) ? $invoice->phone : $invoice->phone_mobile, 
'{invoice_other}' => $invoice->other, 
'{order_name}' => $order->getUniqReference(), 
'{date}' => Tools::displayDate(date('Y-m-d H:i:s'), null, 1), 
'{carrier}' => ($virtual_product || !isset($carrier->name)) ? Tools::displayError('No carrier') : $carrier->name, 
'{payment}' => Tools::substr($order->payment, 0, 32), 
'{products}' => $product_list_html, 
'{products_txt}' => $product_list_txt, 
'{discounts}' => $cart_rules_list_html, 
'{discounts_txt}' => $cart_rules_list_txt, 
'{total_paid}' => Tools::displayPrice($order->total_paid, $this->context->currency, false), 
'{total_products}' => Tools::displayPrice(Product::getTaxCalculationMethod() == PS_TAX_EXC ? $order->total_products : $order->total_products_wt, $this->context->currency, false), 
'{total_discounts}' => Tools::displayPrice($order->total_discounts, $this->context->currency, false), 
'{total_shipping}' => Tools::displayPrice($order->total_shipping, $this->context->currency, false), 
'{total_wrapping}' => Tools::displayPrice($order->total_wrapping, $this->context->currency, false), 
'{total_tax_paid}' => Tools::displayPrice(($order->total_products_wt - $order->total_products) + ($order->total_shipping_tax_incl - $order->total_shipping_tax_excl), $this->context->currency, false)); 

如果您要创建一个新的模块,你可以通过所有你需要的增值经销商“覆盖”的ValidateOrder方法,