Files
2025-08-02 16:30:27 +02:00

17 lines
402 B
PHP

<?php
declare(strict_types=1);
namespace External\PompoBundle\AutomationConfigurator;
class PompoSendSystemEmail extends \KupShop\AutomationConfiguratorBundle\Configurator\Orders\Actions\SendSystemEmail
{
protected function getAllowedSystemEmails(): array
{
$emails = parent::getAllowedSystemEmails();
$emails[] = 'POMPO_ORDER_NOT_COMPLETE';
return $emails;
}
}