سؤال

How to get custom email templates list collection in magento2. how to get the collection

هل كانت مفيدة؟

المحلول

It is working for me.

$objectManager = \Magento\Framework\App\ObjectManager::getInstance(); 
$alltemplele = $objectManager->get('\Magento\Email\Model\ResourceModel\Template\Collection');
            $alltemplele = $alltemplele->toOptionArray();
print_r($alltemplele_data);

نصائح أخرى

try with below code for get email templates :

  $objectManager = \Magento\Framework\App\ObjectManager::getInstance(); 
  $alltemplele = $objectManager->get('\Magento\Email\Model\ResourceModel\Template\Collection');

  $alltemplele_data = $alltemplele->toOptionArray();;
  print_r($alltemplele_data);

i hope its work for you.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى magento.stackexchange
scroll top