我目前正在最終確定一個自定義控制器來接受報價單的Ajax請求的過程。我已經能夠成功地設置一切,並且正確發送。我的問題是關於將CMS的交易電子郵件模板鏈接到我設置的控制器的方法。Magento交易電子郵件模板
我在Magento安裝的語言環境中有一個模板,並且能夠將它加載到後端的交易電子郵件管理器中。我將如何能夠獲得該模板的ID並將其加載到郵件對象中?我試圖使用簡單的數字ID,並且似乎沒有工作。
的Config.xml
<global>
<template>
<email>
<custom_quote>
<label>Custom Quote Form</label>
<file>custom-quote.html</file>
<type>html</type>
</custom_quote>
<trade_printer>
<label>Trade Printer Form</label>
<file>trade-printer.html</file>
<type>html</type>
</trade_printer>
</email>
</template>
</global>
你可以分享你config.xml中? –
添加了相關的代碼片段。 – Sidriel