Custom email templates in Magento2 In this blog, we’ll discuss how we can create custom email templates and insert variables in email templates of magento2. Declare email template Create email_templates.xml inside Vendor/Module/etc/ folder. <? xml version = "1.0" encoding = "UTF-8" ?> < config xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation = "../../../Magento/Email/etc/email_templates.xsd" > < template id = "custom_module_email_template" label = "custom_module_email_template" file = "custom_email.html" type = "html" module = "Blog_Management" area = "frontend" /> </ config > Here, Id is a unique identifier for email templates which we’ll use while declaring which email template we want to use while sending email. label is a displayed name of an email template. file is a html file in which is used...