Programlı olarak fatura oluştururken müşteriye e-posta gönder


14

Programlı bir fatura oluştururken sistemin faturayı müşteriye e-postayla göndermesini nasıl sağlayabilirim?

$order=Mage::getModel('sales/order')->load($orderid); 
$invoice = Mage::getModel('sales/service_order', $order)->prepareInvoice();
if (!$invoice->getTotalQty()) {
    Mage::throwException(Mage::helper('core')->__('Cannot create an invoice without products.'));
}
$invoice->setRequestedCaptureCase(Mage_Sales_Model_Order_Invoice::CAPTURE_ONLINE);
$invoice->register();
$transactionSave = Mage::getModel('core/resource_transaction')
                   ->addObject($invoice)
                   ->addObject($invoice->getOrder());
$transactionSave->save();

Yanıtlar:


12

Sonra $transactionSave->save();:

$invoice->getOrder()->setIsInProcess(true);
$history = $invoice->getOrder()->addStatusHistoryComment(
    'Programmatically created invoice', true
);
$invoice->sendEmail(true, '');
$order->save();

Bu Magento'ya faturayı müşteriye e-postayla göndermesini söyleyecektir.


durum, e-postayı göndermek için gerekli mi?
Qaisar Satti

Evet, bu bir Magento normu. Dahil edilmezse, sipariş İşleme olarak ayarlanmaz (bir kez faturalandırılmalıdır).
Moose
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.