17 lines
402 B
PHP
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;
|
|
}
|
|
}
|