W Symfony 4 Nie mogłem uzyskać $this->getContainer()->get('templating')->render($view, $parameters);
do pracy.
ustawić stosowanie nazw dla Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand
i rozszerzony ContainerAwareCommand class EmailCommand extends ContainerAwareCommand
uzyskać wyjątek rzucony
[Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException]
You have requested a non-existent service "templating".
Dla Symfony 4, jest to rozwiązanie wymyśliłem.
Najpierw zainstalowałem gałązkę.
composer require twig
Następnie stworzyłem własną usługę gałązki.
<?php
# src/Service/Twig.php
namespace App\Service;
use Symfony\Component\HttpKernel\KernelInterface;
class Twig extends \Twig_Environment {
public function __construct(KernelInterface $kernel) {
$loader = new \Twig_Loader_Filesystem($kernel->getProjectDir());
parent::__construct($loader);
}
}
Teraz moje polecenie e-mail wygląda tak.
<?php
# src/Command/EmailCommand.php
namespace App\Command;
use Symfony\Component\Console\Command\Command,
Symfony\Component\Console\Input\InputInterface,
Symfony\Component\Console\Output\OutputInterface,
App\Service\Twig;
class EmailCommand extends Command {
protected static $defaultName = 'mybot:email';
private $mailer,
$twig;
public function __construct(\Swift_Mailer $mailer, Twig $twig) {
$this->mailer = $mailer;
$this->twig = $twig;
parent::__construct();
}
protected function configure() {
$this->setDescription('Email bot.');
}
protected function execute(InputInterface $input, OutputInterface $output) {
$template = $this->twig->load('templates/email.html.twig');
$message = (new \Swift_Message('Hello Email'))
->setFrom('[email protected]')
->setTo('[email protected]')
->setBody(
$template->render(['name' => 'Fabien']),
'text/html'
);
$this->mailer->send($message);
}
}
Dziękuję, tak to działa idealnie. Cóż, dziękuję za odpowiedź !! – TheTom
Kolejne pytanie dotyczące polecenia: Jak uzyskać dostęp do security.content w poleceniu? $ user = $ this-> get ('security.context') -> getToken() -> getUser(); to nie zadziała, więc utknąłem ponownie :( – TheTom
Może dlatego, że '$ this-> get ('security.context') -> getToken() === null' – mykiwi