Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我使用 REST API 向 magento 发送一个 Order 对象(序列化为 JSON obj)。Magento 中的文档没有提供关于我可以在该对象中使用哪些不同属性的足够详细信息。
我想知道是否可以在我的 Order 对象中设置一个标志,以告诉 magento 在订单失败时不要向用户发送电子邮件。
示例:订单 { customer_id: 1, store_id: 1, send_failure_emails: 0, order_lines: { ... ... } }
我建议你看看
Mage_Core_Model_Email_Template::sendTransactional 方法。
您可以重载此类并使用您的标志类型添加对订单成功或失败的检查并发送电子邮件通知(基于模板名称)。