Domanda

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

È stato utile?

Soluzione

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);

Altri suggerimenti

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a magento.stackexchange
scroll top