ไม่ได้กำหนดเทมเพลตอีเมล 'custom_mail_template'


10

ฉันกำลังพยายามส่งจดหมายจากโมดูลที่กำหนดเองของฉัน สำหรับเรื่องนี้ฉันได้สร้างsystem.xmlไฟล์ แต่มันกลับข้อผิดพลาด

ข้อผิดพลาด:

ไม่ได้กำหนดเทมเพลตอีเมล 'custom_mail_template'

รหัสของฉันคือ:

 <?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
    <system>
        <tab id="custom" translate="label" sortOrder="1">
            <label>custom mail</label>
        </tab>
        <section id="custom" translate="label" type="text" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="1">
            <label>custom mail</label>
            <tab>custom</tab>
            <resource>Learning_Custom::config_custom</resource>
            <group id="mail" translate="label" type="text" sortOrder="1" showInDefault="1" showInWebsite="0" showInStore="0">
                <label>Custom</label>
                <field id="active" translate="label" type="select" sortOrder="0" showInDefault="1" showInWebsite="1" showInStore="1">
                    <label>Enabled</label>
                    <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
                </field>
                <field id="template" translate="label comment" type="select" sortOrder="2" showInDefault="1" showInWebsite="1" showInStore="1">
                    <label>Email Template</label>
                    <comment>Email template chosen based on theme fallback when "Default" option is selected.</comment>
                    <source_model>Magento\Config\Model\Config\Source\Email\Template</source_model>
                </field>
            </group>
        </section>
    </system>
</config>

ข้อเสนอแนะใด ๆ จะขอบคุณ

คำตอบ:


19

คุณต้องสร้างไฟล์email_templates.xmlในetcโฟลเดอร์ที่มีเนื้อหา:

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Email:etc/email_templates.xsd">
       <template id="custom_mail_template" label=" Your Custom Label" file="yourfile.html" type="html" module="Vendor_YourModule" area="frontend"/>
</config>

ไฟล์นี้ใช้แม่แบบประกาศมีรหัสcustom_mail_templateในการกำหนดค่าด้วยเส้นทางของไฟล์แม่แบบที่คุณต้องการใช้

หลังจากนั้นคุณสร้างไฟล์อีเมลเทมเพลตyourfile.htmlในเส้นทางVendor/YourModule/view/frontend/email/yourfile.html

ฉันหวังว่ามันจะช่วยคุณได้

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.